MessagesForMacintosh/nuklear_app.c

391 lines
11 KiB
C
Raw Normal View History

2021-11-28 07:48:59 +00:00
void aFailed(char *file, int line) {
MoveTo(10, 10);
char *textoutput;
sprintf(textoutput, "%s:%d", file, line);
writeSerialPortDebug(boutRefNum, "assertion failure");
writeSerialPortDebug(boutRefNum, textoutput);
// hold the program - we want to be able to read the text! assuming anything after the assert would be a crash
while (true) {}
}
#define NK_ASSERT(e) \
if (!(e)) \
aFailed(__FILE__, __LINE__)
#define NK_ZERO_COMMAND_MEMORY
#define NK_INCLUDE_FIXED_TYPES
#define NK_INCLUDE_STANDARD_IO
// #define NK_INCLUDE_STANDARD_VARARGS
#define NK_INCLUDE_DEFAULT_ALLOCATOR
#define NK_IMPLEMENTATION
#define NK_QUICKDRAW_IMPLEMENTATION
// #define NK_BUTTON_TRIGGER_ON_RELEASE
#define NK_MEMSET memset
#define NK_MEMCPY memcpy
#include <Types.h>
#include "nuklear.h"
#include "nuklear_quickdraw.h"
Boolean firstOrMouseMove = true;
2021-11-28 07:48:59 +00:00
Boolean gotMouseEvent = false;
char activeChat[64];
char activeChatMessages[15][2048]; // this should match to MAX_ROWS in index.js
char box_input_buffer[2048];
2021-11-28 07:48:59 +00:00
char chatFriendlyNames[16][64];
char ip_input_buffer[255];
2021-11-28 07:48:59 +00:00
char jsFunctionResponse[102400]; // Matches MAX_RECEIVE_SIZE
char new_message_input_buffer[255];
2021-11-28 07:48:59 +00:00
int activeMessageCounter = 0;
int chatFriendlyNamesCounter = 0;
int coprocessorLoaded = 0;
int drawChatsOneMoreTime = 2; // this is how many 'iterations' of the UI that we need to see every element for
int forceRedraw = 2; // this is how many 'iterations' of the UI that we need to see every element for
int haveRun = 0;
int ipAddressSet = 0;
int mouse_x;
int mouse_y;
int sendNewChat = 0;
short box_input_len;
2021-11-28 07:48:59 +00:00
short box_len;
short new_message_input_buffer_len;
static short ip_input_buffer_len; // TODO: setting a length here will make the default `http://...` work, but doesn't work right -- maybe due to perf work in nuklear
2021-11-28 07:48:59 +00:00
struct nk_rect chats_window_size;
struct nk_rect graphql_input_window_size;
struct nk_rect message_input_window_size;
struct nk_rect messages_window_size;
void getMessagesFromjsFunctionResponse() {
2021-11-28 07:48:59 +00:00
for (int i = 0; i < 15; i++) {
2021-11-28 07:48:59 +00:00
memset(&activeChatMessages[i], '\0', 2048);
}
2021-11-28 07:48:59 +00:00
activeMessageCounter = 0;
2021-11-28 07:48:59 +00:00
// writeSerialPortDebug(boutRefNum, "BEGIN");
2021-11-28 07:48:59 +00:00
// writeSerialPortDebug(boutRefNum, jsFunctionResponse);
char *token = (char *)strtokm(jsFunctionResponse, "ENDLASTMESSAGE");
// loop through the string to extract all other tokens
while (token != NULL) {
// writeSerialPortDebug(boutRefNum, "LOAD VALUE TO TOKEN");
// writeSerialPortDebug(boutRefNum, token);
sprintf(activeChatMessages[activeMessageCounter], "%s", token);
// writeSerialPortDebug(boutRefNum, activeChatMessages[activeMessageCounter]);
// writeSerialPortDebug(boutRefNum, "DONE! LOAD VALUE TO TOKEN");
token = (char *)strtokm(NULL, "ENDLASTMESSAGE");
activeMessageCounter++;
}
2021-11-28 07:48:59 +00:00
return;
}
2021-11-28 07:48:59 +00:00
// function to send messages in chat
void sendMessage() {
2021-11-28 07:48:59 +00:00
char output[2048];
sprintf(output, "%s&&&%s", activeChat, box_input_buffer);
2021-11-28 07:48:59 +00:00
memset(&box_input_buffer, '\0', 2048);
sprintf(box_input_buffer, "");
box_input_len = 0;
2021-11-28 07:48:59 +00:00
callFunctionOnCoprocessor("sendMessage", output, jsFunctionResponse);
2021-11-28 07:48:59 +00:00
getMessagesFromjsFunctionResponse();
2021-11-28 07:48:59 +00:00
forceRedraw = 3;
firstOrMouseMove = true;
2021-11-28 07:48:59 +00:00
return;
}
void sendIPAddressToCoprocessor() {
2021-11-28 07:48:59 +00:00
char output[2048];
sprintf(output, "%s", ip_input_buffer);
writeSerialPortDebug(boutRefNum, output);
2021-11-28 07:48:59 +00:00
callFunctionOnCoprocessor("setIPAddress", output, jsFunctionResponse);
2021-11-28 07:48:59 +00:00
return;
}
// set up function to get messages in current chat
// limit to recent messages
// figure out pagination?? button on the top that says "get previous chats"?
void getMessages(char *thread, int page) {
2021-11-28 07:48:59 +00:00
char output[62];
sprintf(output, "%s&&&%d", thread, page);
// writeSerialPortDebug(boutRefNum, output);
2021-11-28 07:48:59 +00:00
callFunctionOnCoprocessor("getMessages", output, jsFunctionResponse);
// writeSerialPortDebug(boutRefNum, jsFunctionResponse);
getMessagesFromjsFunctionResponse();
2021-11-28 07:48:59 +00:00
forceRedraw = 3;
2021-11-28 07:48:59 +00:00
return;
}
void getHasNewMessagesInChat(char *thread) {
2021-11-28 07:48:59 +00:00
char output[62];
sprintf(output, "%s", thread);
// writeSerialPortDebug(boutRefNum, output);
2021-11-28 07:48:59 +00:00
callFunctionOnCoprocessor("hasNewMessagesInChat", output, jsFunctionResponse);
// writeSerialPortDebug(boutRefNum, jsFunctionResponse);
if (!strcmp(jsFunctionResponse, "true")) {
2021-11-28 07:48:59 +00:00
// writeSerialPortDebug(boutRefNum, "update current chat");
SysBeep(1);
getMessages(thread, 0);
// force redraw
firstOrMouseMove = true;
}
2021-11-28 07:48:59 +00:00
return;
}
// set up function to get available chat (fill buttons on right hand side)
// run it on some interval? make sure user is not typing!!!
void getChats() {
2021-11-28 07:48:59 +00:00
if (haveRun) {
2021-11-28 07:48:59 +00:00
return;
}
2021-11-28 07:48:59 +00:00
haveRun = 1;
2021-11-28 07:48:59 +00:00
callFunctionOnCoprocessor("getChats", "", jsFunctionResponse);
2021-11-28 07:48:59 +00:00
char * token = (char *)strtokm(jsFunctionResponse, ",");
// loop through the string to extract all other tokens
while (token != NULL) {
sprintf(chatFriendlyNames[chatFriendlyNamesCounter++], "%s", token);
token = (char *)strtokm(NULL, ",");
}
2021-11-28 07:48:59 +00:00
return;
}
Boolean chatWindowCollision;
Boolean messageWindowCollision;
Boolean checkCollision(struct nk_rect window) {
2021-11-28 07:48:59 +00:00
// writeSerialPortDebug(boutRefNum, "checkCollision!");
2021-11-28 07:48:59 +00:00
// Boolean testout = (window.x < mouse_x &&
// window.x + window.w > mouse_x &&
// window.y < mouse_y &&
// window.y + window.h > mouse_y);
// char str[255];
// sprintf(str, "what %d", testout);
// writeSerialPortDebug(boutRefNum, str);
2021-11-28 07:48:59 +00:00
// if truthy return, mouse is over window!
return (window.x < mouse_x &&
window.x + window.w > mouse_x &&
window.y < mouse_y &&
window.y + window.h > mouse_y);
}
2021-11-28 07:48:59 +00:00
static void nuklearApp(struct nk_context *ctx) {
2021-11-28 07:48:59 +00:00
// prompt the user for the graphql instance
if (!coprocessorLoaded) {
2021-11-28 07:48:59 +00:00
if (nk_begin_titled(ctx, "Loading coprocessor services", "Loading coprocessor services", graphql_input_window_size, NK_WINDOW_TITLE|NK_WINDOW_BORDER)) {
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 20, 1);
{
nk_layout_row_push(ctx, 200);
nk_label_wrap(ctx, "Please wait");
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_end(ctx);
}
2021-11-28 07:48:59 +00:00
return;
}
2021-11-28 07:48:59 +00:00
// prompt the user for the graphql instance
if (!ipAddressSet) {
2021-11-28 07:48:59 +00:00
if (nk_begin_titled(ctx, "Enter iMessage GraphQL Server", "Enter iMessage GraphQL Server", graphql_input_window_size, NK_WINDOW_TITLE|NK_WINDOW_BORDER)) {
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 20, 1);
{
nk_layout_row_push(ctx, 200);
nk_label_wrap(ctx, "ex: http://127.0.0.1");
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 30, 2);
{
nk_layout_row_push(ctx, WINDOW_WIDTH / 2 - 90);
2021-11-28 07:48:59 +00:00
nk_edit_string(ctx, NK_EDIT_SIMPLE, ip_input_buffer, &ip_input_buffer_len, 255, nk_filter_default);
2021-11-28 07:48:59 +00:00
nk_layout_row_push(ctx, 60);
if (nk_button_label(ctx, "save")) {
ipAddressSet = 1;
forceRedraw = 2;
sendIPAddressToCoprocessor();
}
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_end(ctx);
}
2021-11-28 07:48:59 +00:00
return;
}
2021-11-28 07:48:59 +00:00
// prompt the user for new chat
if (sendNewChat) {
2021-11-28 07:48:59 +00:00
if (nk_begin_titled(ctx, "Enter New Message Recipient", "Enter New Message Recipient", nk_rect(WINDOW_WIDTH / 4, WINDOW_HEIGHT / 4, WINDOW_WIDTH / 2, 120), NK_WINDOW_TITLE|NK_WINDOW_BORDER)) {
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 30, 2);
{
nk_layout_row_push(ctx, WINDOW_WIDTH / 2 - 110);
2021-11-28 07:48:59 +00:00
nk_edit_string(ctx, NK_EDIT_SIMPLE, new_message_input_buffer, &new_message_input_buffer_len, 2048, nk_filter_default);
2021-11-28 07:48:59 +00:00
nk_layout_row_push(ctx, 80);
if (nk_button_label(ctx, "open chat")) {
sendNewChat = 0;
forceRedraw = 2;
// sendIPAddressToCoprocessor();
2021-11-28 07:48:59 +00:00
sprintf(activeChat, new_message_input_buffer);
}
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_end(ctx);
}
2021-11-28 07:48:59 +00:00
return;
}
2021-11-28 07:48:59 +00:00
chatWindowCollision = checkCollision(chats_window_size);
if ((chatWindowCollision || forceRedraw || drawChatsOneMoreTime) && nk_begin(ctx, "Chats", chats_window_size, NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) {
2021-11-28 07:48:59 +00:00
if (chatWindowCollision) {
2021-11-28 07:48:59 +00:00
drawChatsOneMoreTime = 2;
}
getChats();
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 25, 1);
{
for (int i = 0; i < chatFriendlyNamesCounter; i++) {
2021-11-28 07:48:59 +00:00
// only display the first 8 chats, create new chat if you need someone not in your list
if (i > 9) {
2021-11-28 07:48:59 +00:00
continue;
}
2021-11-28 07:48:59 +00:00
nk_layout_row_push(ctx, 169);
2021-11-28 07:48:59 +00:00
if (nk_button_label(ctx, chatFriendlyNames[i])) {
2021-11-28 07:48:59 +00:00
sprintf(activeChat, "%s", chatFriendlyNames[i]);
getMessages(activeChat, 0);
}
}
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_end(ctx);
}
if (nk_begin(ctx, "Message Input", message_input_window_size, NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR)) {
2021-11-28 07:48:59 +00:00
// bottom text input
nk_layout_row_begin(ctx, NK_STATIC, 28, 1);
{
nk_layout_row_push(ctx, 320);
2021-11-28 07:48:59 +00:00
short edit_return_value = nk_edit_string(ctx, NK_EDIT_FIELD|NK_EDIT_SIG_ENTER, box_input_buffer, &box_input_len, 2048, nk_filter_default);
2021-11-28 07:48:59 +00:00
// this is the enter key, obviously
if (edit_return_value == 17) {
2021-11-28 07:48:59 +00:00
sendMessage();
}
}
nk_layout_row_end(ctx);
2021-11-28 07:48:59 +00:00
nk_end(ctx);
}
if ((forceRedraw || drawChatsOneMoreTime) && nk_begin_titled(ctx, "Message", activeChat, messages_window_size, NK_WINDOW_BORDER|NK_WINDOW_TITLE|NK_WINDOW_NO_SCROLLBAR)) {
2021-11-28 07:48:59 +00:00
nk_layout_row_begin(ctx, NK_STATIC, 12, 1);
{
for (int i = 0; i < activeMessageCounter; i++) {
nk_layout_row_push(ctx, 305);
// message label
// writeSerialPortDebug(boutRefNum, "create label!");
// writeSerialPortDebug(boutRefNum, activeChatMessages[i]);
nk_label(ctx, activeChatMessages[i], NK_TEXT_ALIGN_LEFT);
}
}
nk_layout_row_end(ctx);
nk_end(ctx);
}
2021-11-28 07:48:59 +00:00
if (forceRedraw) {
forceRedraw--;
}
if (drawChatsOneMoreTime) {
drawChatsOneMoreTime--;
}
}
struct nk_context* initializeNuklearApp() {
2021-11-28 07:48:59 +00:00
sprintf(activeChat, "no active chat");
struct nk_context *ctx;
graphql_input_window_size = nk_rect(WINDOW_WIDTH / 4, WINDOW_HEIGHT / 4, WINDOW_WIDTH / 2, 120);
chats_window_size = nk_rect(0, 0, 180, WINDOW_HEIGHT);
messages_window_size = nk_rect(180, 0, 330, WINDOW_HEIGHT - 36);
message_input_window_size = nk_rect(180, WINDOW_HEIGHT - 36, 330, 36);
ctx = nk_quickdraw_init(WINDOW_WIDTH, WINDOW_HEIGHT);
2021-11-28 07:48:59 +00:00
nk_input_begin(ctx);
nk_input_end(ctx);
nuklearApp(ctx);
nk_quickdraw_render(FrontWindow(), ctx);
nk_clear(ctx);
sprintf(ip_input_buffer, "http://"); // doesn't work due to bug
2021-11-28 07:48:59 +00:00
return ctx;
}