aboutsummaryrefslogtreecommitdiff
path: root/ui_wrapped.c
diff options
context:
space:
mode:
authorRaymaekers Luca <luca@spacehb.net>2025-04-27 12:52:06 +0200
committerRaymaekers Luca <luca@spacehb.net>2025-04-27 13:05:34 +0200
commitf87f7b4f0aaccc65d03ccee5bb11915ead6fb0e1 (patch)
treed54df0bfde3dbffa02b1f138af4f12456f261e54 /ui_wrapped.c
parent0574f5a7c5159a2ae1d7d2182cec982509947db9 (diff)
First pass at preparing for Github
Diffstat (limited to 'ui_wrapped.c')
-rw-r--r--ui_wrapped.c82
1 files changed, 0 insertions, 82 deletions
diff --git a/ui_wrapped.c b/ui_wrapped.c
deleted file mode 100644
index 67ddffe..0000000
--- a/ui_wrapped.c
+++ /dev/null
@@ -1,82 +0,0 @@
-#define MAX_INPUT_LEN 255
-
-#define TB_IMPL
-#include "external/termbox2.h"
-#undef TB_IMPL
-#define CHATTY_IMPL
-#include "ui.h"
-#undef CHATTY_IMPL
-
-void
-DrawBoxTest(rect Box, wchar_t *DummyText)
-{
- u32 TextLen = wcslen(DummyText);
-
- wchar_t Text[TextLen];
- bzero(Text, sizeof(Text));
- wcsncpy(Text, DummyText, TextLen + 1); // copy n*ull terminator
-
- rect TextR = TEXTBOXFROMBOX(Box);
- // fill the cursor for reference
- for (s32 Y = 0; Y < TextR.H; Y++)
- for (s32 X = 0; X < TextR.W; X++)
- tb_printf(TextR.X + X, TextR.Y + Y, 0, TB_BLUE, " ");
-
- DrawBox(Box, 0);
- tb_present();
- TextBoxDrawWrapped(TextR, Text, TextLen);
- tb_printf(0, TextR.Y - 1, 0, 0,
- "%d (%d, %d) ~(%d, %d)",
- TextLen,
- global.cursor_x, global.cursor_y,
- global.cursor_x - TextR.X, global.cursor_y - TextR.Y);
- tb_printf(global.cursor_x, global.cursor_y, 0, TB_RED, " ");
-}
-
-struct tb_cell
-tb_get_cell(s32 X, s32 Y)
-{
- return global.back.cells[global.width * Y + X];
-}
-
-
-int
-main(int Argc, char* Argv[])
-{
- struct tb_event ev;
- rect Box = {0, 0, 24, 4};
-
- setlocale(LC_ALL, "");
-
- tb_init();
- bytebuf_puts(&global.out, global.caps[TB_CAP_SHOW_CURSOR]);
-
- /* Text that does not fit */
- DrawBoxTest(Box, L"This is some dummy text meant to be wrapped multiple times.");
- Box.Y += Box.H;
-
- /* Text that fits */
- DrawBoxTest(Box, L"That is some.");
- Box.Y += Box.H;
-
- /* Text ending on a space */
- DrawBoxTest(Box, L"There is something. ");
- Box.Y += Box.H;
-
- /* Text that fits the surface */
- DrawBoxTest(Box, L"This is something. This is something.");
- Box.Y += Box.H;
-
- /* Text that wraps once */
- DrawBoxTest(Box, L"This is something I do not.");
-
- rect NewBox = Box;
- NewBox.X += Box.W + 2;
- DrawBox(NewBox, 0);
-
- tb_present();
- tb_poll_event(&ev);
-
- tb_shutdown();
- return 0;
-}