4coder/4ed_view_ui.cpp

404 lines
17 KiB
C++
Raw Normal View History

/*
* Mr. 4th Dimention - Allen Webster
*
* ??.??.2018
*
* View GUI layouts and implementations
*
*/
// TOP
////////////////////////////////
global_const Style_Color_Edit colors_to_edit[] = {
{Stag_Back, Stag_Default, Stag_Back, lit("Background")},
{Stag_Margin, Stag_Default, Stag_Margin, lit("Margin")},
{Stag_Margin_Hover, Stag_Default, Stag_Margin_Hover, lit("Margin Hover")},
{Stag_Margin_Active, Stag_Default, Stag_Margin_Active, lit("Margin Active")},
{Stag_Cursor, Stag_At_Cursor, Stag_Cursor, lit("Cursor")},
{Stag_At_Cursor, Stag_At_Cursor, Stag_Cursor, lit("Text At Cursor")},
{Stag_Mark, Stag_Mark, Stag_Back, lit("Mark")},
{Stag_Highlight, Stag_At_Highlight, Stag_Highlight, lit("Highlight")},
{Stag_At_Highlight, Stag_At_Highlight, Stag_Highlight, lit("Text At Highlight")},
{Stag_Default, Stag_Default, Stag_Back, lit("Text Default")},
{Stag_Comment, Stag_Comment, Stag_Back, lit("Comment")},
{Stag_Keyword, Stag_Keyword, Stag_Back, lit("Keyword")},
{Stag_Str_Constant, Stag_Str_Constant, Stag_Back, lit("String Constant")},
{Stag_Char_Constant, Stag_Char_Constant, Stag_Back, lit("Character Constant")},
{Stag_Int_Constant, Stag_Int_Constant, Stag_Back, lit("Integer Constant")},
{Stag_Float_Constant, Stag_Float_Constant, Stag_Back, lit("Float Constant")},
{Stag_Bool_Constant, Stag_Bool_Constant, Stag_Back, lit("Boolean Constant")},
{Stag_Preproc, Stag_Preproc, Stag_Back, lit("Preprocessor")},
{Stag_Special_Character, Stag_Special_Character, Stag_Back, lit("Special Character")},
{Stag_Highlight_Junk, Stag_Default, Stag_Highlight_Junk, lit("Junk Highlight")},
{Stag_Highlight_White, Stag_Default, Stag_Highlight_White, lit("Whitespace Highlight")},
{Stag_Paste, Stag_Paste, Stag_Back, lit("Paste Color")},
{Stag_Bar, Stag_Base, Stag_Bar, lit("Bar")},
{Stag_Base, Stag_Base, Stag_Bar, lit("Bar Text")},
{Stag_Pop1, Stag_Pop1, Stag_Bar, lit("Bar Pop 1")},
{Stag_Pop2, Stag_Pop2, Stag_Bar, lit("Bar Pop 2")},
};
internal Input_Process_Result
do_step_file_view(System_Functions *system, View *view, Models *models, i32_Rect rect, b32 is_active, f32 dt, GUI_Scroll_Vars scroll, i32 max_y){
2018-07-17 03:21:22 +00:00
scroll.target_y = clamp(0, scroll.target_y, max_y);
Input_Process_Result result = {};
2018-07-17 03:21:22 +00:00
result.scroll = scroll;
i32 line_height = view->transient.line_height;
if (!view->transient.hide_file_bar){
i32_Rect top_bar_rect = {};
top_bar_rect.x0 = rect.x0;
top_bar_rect.y0 = rect.y0;
top_bar_rect.x1 = rect.x1;
top_bar_rect.y1 = rect.y0 + line_height + 2;
rect.y0 = top_bar_rect.y1;
}
i32 bar_count = 0;
for (Query_Slot *slot = view->transient.query_set.used_slot;
slot != 0;
slot = slot->next, ++bar_count);
view->transient.widget_height = (f32)bar_count*(view->transient.line_height + 2);
Editing_File *file = view->transient.file_data.file;
if (!view->transient.ui_mode){
view->transient.file_region = rect;
if (view->transient.reinit_scrolling){
view->transient.reinit_scrolling = false;
result.is_animating = true;
i32 target_x = 0;
i32 target_y = 0;
if (file_is_ready(file)){
Vec2 cursor = view_get_cursor_xy(view);
f32 width = view_width(view);
f32 height = view_height(view);
if (cursor.x >= target_x + width){
target_x = round32(cursor.x - width*.35f);
}
target_y = clamp_bottom(0, floor32(cursor.y - height*.5f));
}
2018-07-17 03:21:22 +00:00
result.scroll.target_y = target_y;
result.scroll.scroll_y = (f32)target_y;
result.scroll.prev_target_y = -1000;
2018-07-17 03:21:22 +00:00
result.scroll.target_x = target_x;
result.scroll.scroll_x = (f32)target_x;
result.scroll.prev_target_x = -1000;
}
}
if (!file->is_loading && file->state.paste_effect.seconds_down > 0.f){
file->state.paste_effect.seconds_down -= dt;
result.is_animating = true;
}
{
2018-07-17 03:21:22 +00:00
GUI_Scroll_Vars scroll_vars = result.scroll;
b32 is_new_target = (scroll_vars.target_x != scroll_vars.prev_target_x ||
scroll_vars.target_y != scroll_vars.prev_target_y);
f32 target_x = (f32)scroll_vars.target_x;
f32 target_y = (f32)scroll_vars.target_y;
if (models->scroll_rule(target_x, target_y, &scroll_vars.scroll_x, &scroll_vars.scroll_y, (view->persistent.id) + 1, is_new_target, dt)){
result.is_animating = true;
}
scroll_vars.prev_target_x = scroll_vars.target_x;
scroll_vars.prev_target_y = scroll_vars.target_y;
2018-07-17 03:21:22 +00:00
result.scroll = scroll_vars;
}
return(result);
}
////////////////////////////////
internal void
draw_text_field(System_Functions *system, Render_Target *target, View *view, Models *models, Face_ID font_id, i32_Rect rect, String p, String t){
if (target != 0){
Style *style = &models->styles.styles[0];
u32 back_color = style->theme.colors[Stag_Margin];
u32 text1_color = style->theme.colors[Stag_Default];
u32 text2_color = style->theme.colors[Stag_Pop1];
i32 x = rect.x0;
i32 y = rect.y0 + 2;
draw_rectangle(target, rect, back_color);
x = ceil32(draw_string(system, target, font_id, p, x, y, text2_color));
draw_string(system, target, font_id, t, x, y, text1_color);
}
}
internal void
intbar_draw_string(System_Functions *system, Render_Target *target, File_Bar *bar, String str, u32 char_color){
draw_string(system, target, bar->font_id, str, (i32)(bar->pos_x + bar->text_shift_x), (i32)(bar->pos_y + bar->text_shift_y), char_color);
bar->pos_x += font_string_width(system, target, bar->font_id, str);
}
internal void
draw_file_bar(System_Functions *system, Render_Target *target, View *view, Models *models, Editing_File *file, i32_Rect rect){
File_Bar bar;
Style *style = &models->styles.styles[0];
u32 back_color = style->theme.colors[Stag_Bar];
u32 base_color = style->theme.colors[Stag_Base];
u32 pop1_color = style->theme.colors[Stag_Pop1];
u32 pop2_color = style->theme.colors[Stag_Pop2];
bar.rect = rect;
if (target != 0){
bar.font_id = file->settings.font_id;
bar.pos_x = (f32)bar.rect.x0;
bar.pos_y = (f32)bar.rect.y0;
bar.text_shift_y = 2;
bar.text_shift_x = 0;
draw_rectangle(target, bar.rect, back_color);
Assert(file != 0);
intbar_draw_string(system, target, &bar, file->unique_name.name, base_color);
intbar_draw_string(system, target, &bar, lit(" -"), base_color);
if (file->is_loading){
intbar_draw_string(system, target, &bar, lit(" loading"), base_color);
}
else{
char bar_space[526];
String bar_text = make_fixed_width_string(bar_space);
append_ss (&bar_text, lit(" L#"));
append_int_to_str(&bar_text, view->transient.edit_pos->cursor.line);
append_ss (&bar_text, lit(" C#"));
append_int_to_str(&bar_text, view->transient.edit_pos->cursor.character);
append_ss(&bar_text, lit(" -"));
if (file->settings.dos_write_mode){
append_ss(&bar_text, lit(" dos"));
}
else{
append_ss(&bar_text, lit(" nix"));
}
intbar_draw_string(system, target, &bar, bar_text, base_color);
if (file->state.still_lexing){
intbar_draw_string(system, target, &bar, lit(" parsing"), pop1_color);
}
switch (file->state.dirty){
case DirtyState_UnloadedChanges:
{
intbar_draw_string(system, target, &bar, lit(" !"), pop2_color);
}break;
case DirtyState_UnsavedChanges:
{
intbar_draw_string(system, target, &bar, lit(" *"), pop2_color);
}break;
}
}
}
}
internal u32
get_margin_color(Style *style, i32 level){
u32 margin = 0xFFFFFFFF;
switch (level){
default:
case UIActivation_None:
{
margin = style->theme.colors[Stag_List_Item];
}break;
case UIActivation_Hover:
{
margin = style->theme.colors[Stag_List_Item_Hover];
}break;
case UIActivation_Active:
{
margin = style->theme.colors[Stag_List_Item_Active];
}break;
}
return(margin);
}
2018-09-22 23:45:24 +00:00
internal void
do_render_file_view(System_Functions *system, View *view, Models *models, GUI_Scroll_Vars *scroll, View *active, i32_Rect rect, b32 is_active, Render_Target *target){
Editing_File *file = view->transient.file_data.file;
Assert(file != 0);
i32 line_height = view->transient.line_height;
Style *style = &models->styles.styles[0];
Face_ID font_id = file->settings.font_id;
2018-08-10 21:52:57 +00:00
char font_name_space[256];
String font_name = make_fixed_width_string(font_name_space);
font_name.size = system->font.get_name_by_id(font_id, font_name.str, font_name.memory_size);
2018-08-07 09:08:01 +00:00
Font_Pointers font = system->font.get_pointers_by_id(font_id);
if (!view->transient.hide_file_bar){
i32_Rect top_bar_rect = {};
top_bar_rect.x0 = rect.x0;
top_bar_rect.y0 = rect.y0;
top_bar_rect.x1 = rect.x1;
top_bar_rect.y1 = rect.y0 + line_height + 2;
rect.y0 = top_bar_rect.y1;
draw_file_bar(system, target, view, models, file, top_bar_rect);
}
i32 bar_count = 0;
for (Query_Slot *slot = view->transient.query_set.used_slot;
slot != 0;
slot = slot->next, ++bar_count){
i32_Rect query_bar_rect = {};
query_bar_rect.x0 = rect.x0;
query_bar_rect.y0 = rect.y0;
query_bar_rect.x1 = rect.x1;
query_bar_rect.y1 = rect.y0 + line_height + 2;
rect.y0 = query_bar_rect.y1;
u32 back_color = style->theme.colors[Stag_Back];
u32 text1_color = style->theme.colors[Stag_Default];
u32 text2_color = style->theme.colors[Stag_Pop1];
i32 x = query_bar_rect.x0;
i32 y = query_bar_rect.y0 + 2;
draw_rectangle(target, query_bar_rect, back_color);
x = ceil32(draw_string(system, target, font_id, slot->query_bar->prompt, x, y, text2_color));
draw_string(system, target, font_id, slot->query_bar->string, x, y, text1_color);
}
view->transient.widget_height = (f32)bar_count*(view->transient.line_height + 2);
draw_push_clip(target, rect);
if (!view->transient.ui_mode){
if (file_is_ready(file)){
2018-09-30 12:14:47 +00:00
render_loaded_file_in_view(system, view, models, rect, is_active, target);
}
}
else{
2018-07-17 03:21:22 +00:00
f32_Rect rect_f32 = f32R(rect);
i32 item_count = view->transient.ui_control.count;
UI_Item *item = view->transient.ui_control.items;
2018-09-04 19:16:46 +00:00
GUI_Scroll_Vars ui_scroll = view->transient.ui_scroll;
for (i32 i = 0; i < item_count; ++i, item += 1){
2018-07-17 03:21:22 +00:00
f32_Rect item_rect = f32R(item->rectangle);
switch (item->coordinates){
case UICoordinates_Scrolled:
{
2018-09-04 19:16:46 +00:00
item_rect.x0 += rect_f32.x0 - ui_scroll.scroll_x;
item_rect.y0 += rect_f32.y0 - ui_scroll.scroll_y;
item_rect.x1 += rect_f32.x0 - ui_scroll.scroll_x;
item_rect.y1 += rect_f32.y0 - ui_scroll.scroll_y;
}break;
case UICoordinates_ViewRelative:
{
item_rect.x0 += rect_f32.x0;
item_rect.y0 += rect_f32.y0;
item_rect.x1 += rect_f32.x0;
item_rect.y1 += rect_f32.y0;
}break;
}
2018-07-17 03:21:22 +00:00
if (rect_opverlap(item_rect, rect_f32)){
switch (item->type){
case UIType_Option:
{
u32 back = style->theme.colors[Stag_Back];
u32 text_color = style->theme.colors[Stag_Default];
u32 pop_color = style->theme.colors[Stag_Pop2];
u32 margin_color = get_margin_color(style, item->activation_level);
2018-07-17 03:21:22 +00:00
f32_Rect inner = get_inner_rect(item_rect, 3);
draw_rectangle(target, inner, back);
i32 x = (i32)inner.x0 + 3;
i32 y = (i32)inner.y0 + line_height/2 - 1;
2018-08-07 09:08:01 +00:00
x = ceil32(draw_string(system, target, font_id, item->option.string, x, y, text_color));
x += (i32)font_string_width(system, target, font_id, " ");
2018-08-07 09:08:01 +00:00
draw_string(system, target, font_id, item->option.status, x, y, pop_color);
draw_margin(target, item_rect, inner, margin_color);
2018-07-17 03:21:22 +00:00
}break;
case UIType_TextField:
{
u32 back = style->theme.colors[Stag_Back];
u32 text1 = style->theme.colors[Stag_Default];
u32 text2 = style->theme.colors[Stag_Pop1];
draw_rectangle(target, item_rect, back);
2018-07-17 03:21:22 +00:00
i32 x = (i32)item_rect.x0;
i32 y = (i32)item_rect.y0 + 2;
x = ceil32(draw_string(system, target, font_id, item->text_field.query, x, y, text2));
x += (i32)font_string_width(system, target, font_id, " ");
draw_string(system, target, font_id, item->text_field.string, x, y, text1);
2018-08-07 09:08:01 +00:00
}break;
2018-08-10 21:52:57 +00:00
case UIType_ColorTheme:
2018-08-07 09:08:01 +00:00
{
2018-08-10 21:52:57 +00:00
Style *style_preview = &models->styles.styles[item->color_theme.index];
u32 margin_color = get_margin_color(style_preview, item->activation_level);
u32 back = style_preview->theme.colors[Stag_Back];
u32 text_color = style_preview->theme.colors[Stag_Default];
u32 keyword_color = style_preview->theme.colors[Stag_Keyword];
u32 int_constant_color = style_preview->theme.colors[Stag_Int_Constant];
u32 comment_color = style_preview->theme.colors[Stag_Comment];
2018-08-10 21:52:57 +00:00
2018-08-07 09:08:01 +00:00
f32_Rect inner = get_inner_rect(item_rect, 3);
2018-08-10 21:52:57 +00:00
2018-08-07 09:08:01 +00:00
draw_margin(target, item_rect, inner, margin_color);
2018-08-10 21:52:57 +00:00
draw_rectangle(target, inner, back);
i32 y = (i32)inner.y0;
i32 x = (i32)inner.x0;
String str = item->color_theme.string;
if (str.str == 0){
str = style_preview->name;
}
x = ceil32(draw_string(system, target, font_id, str, x, y, text_color));
i32 font_x = (i32)(inner.x1 - font_string_width(system, target, font_id, font_name));
if (font_x > x + 10){
draw_string(system, target, font_id, font_name, font_x, y, text_color);
}
2018-08-07 09:08:01 +00:00
i32 height = font.metrics->height;
x = (i32)inner.x0;
2018-08-07 09:08:01 +00:00
y += height;
2018-08-10 21:52:57 +00:00
x = ceil32(draw_string(system, target, font_id, "if", x, y, keyword_color));
x = ceil32(draw_string(system, target, font_id, "(x < ", x, y, text_color));
x = ceil32(draw_string(system, target, font_id, "0", x, y, int_constant_color));
x = ceil32(draw_string(system, target, font_id, ") { x = ", x, y, text_color));
x = ceil32(draw_string(system, target, font_id, "0", x, y, int_constant_color));
x = ceil32(draw_string(system, target, font_id, "; } ", x, y, text_color));
x = ceil32(draw_string(system, target, font_id, "// comment", x, y, comment_color));
x = (i32)inner.x0;
2018-08-10 21:52:57 +00:00
y += height;
draw_string(system, target, font_id, "[] () {}; * -> +-/ <>= ! && || % ^", x, y, text_color);
2018-07-17 03:21:22 +00:00
}break;
}
}
}
}
draw_pop_clip(target);
}
// BOTTOM