192 lines
7.2 KiB
C++
192 lines
7.2 KiB
C++
/*
|
|
* Default color slots
|
|
*/
|
|
|
|
// TOP
|
|
|
|
function Color_Array
|
|
finalize_color_array(Color_Table table, u64 id){
|
|
return(table.arrays[id % table.count]);
|
|
}
|
|
|
|
function ARGB_Color
|
|
finalize_color(Color_Array array, i32 sub_index){
|
|
ARGB_Color result = 0xFFFFFFFF;
|
|
if (array.count > 0){
|
|
result = array.vals[sub_index % array.count];
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
function ARGB_Color
|
|
finalize_color(Color_Table color_table, u64 id, i32 sub_index){
|
|
Color_Array array = finalize_color_array(color_table, id);
|
|
return(finalize_color(array, sub_index));
|
|
}
|
|
|
|
function Color_Array
|
|
finalize_color_array(u64 id){
|
|
return(finalize_color_array(active_color_table, id));
|
|
}
|
|
|
|
function ARGB_Color
|
|
finalize_color(u64 id, i32 sub_index){
|
|
return(finalize_color(active_color_table, id, sub_index));
|
|
}
|
|
|
|
////////////////////////////////
|
|
|
|
function Color_Array
|
|
make_colors(Arena *arena, ARGB_Color color){
|
|
Color_Array result = {};
|
|
result.count = 1;
|
|
result.vals = push_array(arena, ARGB_Color, 1);
|
|
result.vals[0] = color;
|
|
return(result);
|
|
}
|
|
|
|
function Color_Array
|
|
make_colors(Arena *arena, ARGB_Color c1, ARGB_Color c2){
|
|
Color_Array result = {};
|
|
result.count = 2;
|
|
result.vals = push_array(arena, ARGB_Color, 2);
|
|
result.vals[0] = c1;
|
|
result.vals[1] = c2;
|
|
return(result);
|
|
}
|
|
|
|
function Color_Array
|
|
make_colors(Arena *arena, ARGB_Color c1, ARGB_Color c2, ARGB_Color c3){
|
|
Color_Array result = {};
|
|
result.count = 3;
|
|
result.vals = push_array(arena, ARGB_Color, 3);
|
|
result.vals[0] = c1;
|
|
result.vals[1] = c2;
|
|
result.vals[2] = c3;
|
|
return(result);
|
|
}
|
|
|
|
function Color_Array
|
|
make_colors(Arena *arena, ARGB_Color c1, ARGB_Color c2, ARGB_Color c3, ARGB_Color c4){
|
|
Color_Array result = {};
|
|
result.count = 4;
|
|
result.vals = push_array(arena, ARGB_Color, 4);
|
|
result.vals[0] = c1;
|
|
result.vals[1] = c2;
|
|
result.vals[2] = c3;
|
|
result.vals[3] = c4;
|
|
return(result);
|
|
}
|
|
|
|
function Color_Array
|
|
make_colors(Arena *arena, ARGB_Color *colors, i32 count){
|
|
Color_Array result = {};
|
|
result.count = count;
|
|
result.vals = push_array_write(arena, ARGB_Color, count, colors);
|
|
return(result);
|
|
}
|
|
|
|
function Color_Table
|
|
make_color_table(Application_Links *app, Arena *arena){
|
|
Managed_ID highest_color_id = managed_id_group_highest_id(app, string_u8_litexpr("colors"));
|
|
Color_Table result = {};
|
|
result.count = (u32)(clamp_top(highest_color_id + 1, max_u32));
|
|
result.arrays = push_array(arena, Color_Array, result.count);
|
|
u32 *dummy = push_array(arena, u32, 1);
|
|
*dummy = 0xFF990099;
|
|
for (u32 i = 0; i < result.count; i += 1){
|
|
result.arrays[i].vals = dummy;
|
|
result.arrays[i].count = 1;
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
function void
|
|
set_default_color_scheme(Application_Links *app){
|
|
if (global_theme_arena.base_allocator == 0){
|
|
global_theme_arena = make_arena_system();
|
|
}
|
|
|
|
Arena *arena = &global_theme_arena;
|
|
|
|
default_color_table = make_color_table(app, arena);
|
|
|
|
default_color_table.arrays[0] = make_colors(arena, 0xFF90B080);
|
|
default_color_table.arrays[defcolor_bar] = make_colors(arena, 0xFF888888);
|
|
default_color_table.arrays[defcolor_base] = make_colors(arena, 0xFF000000);
|
|
default_color_table.arrays[defcolor_pop1] = make_colors(arena, 0xFF3C57DC);
|
|
default_color_table.arrays[defcolor_pop2] = make_colors(arena, 0xFFFF0000);
|
|
default_color_table.arrays[defcolor_back] = make_colors(arena, 0xFF0C0C0C);
|
|
default_color_table.arrays[defcolor_margin] = make_colors(arena, 0xFF181818);
|
|
default_color_table.arrays[defcolor_margin_hover] = make_colors(arena, 0xFF252525);
|
|
default_color_table.arrays[defcolor_margin_active] = make_colors(arena, 0xFF323232);
|
|
default_color_table.arrays[defcolor_list_item] = make_colors(arena, 0xFF181818, 0xFF0C0C0C);
|
|
default_color_table.arrays[defcolor_list_item_hover] = make_colors(arena, 0xFF252525, 0xFF181818);
|
|
default_color_table.arrays[defcolor_list_item_active] = make_colors(arena, 0xFF323232, 0xFF323232);
|
|
default_color_table.arrays[defcolor_cursor] = make_colors(arena, 0xFF00EE00, 0xFFEE7700);
|
|
default_color_table.arrays[defcolor_at_cursor] = make_colors(arena, 0xFF0C0C0C);
|
|
default_color_table.arrays[defcolor_highlight_cursor_line] = make_colors(arena, 0xFF1E1E1E);
|
|
default_color_table.arrays[defcolor_highlight] = make_colors(arena, 0xFFDDEE00);
|
|
default_color_table.arrays[defcolor_at_highlight] = make_colors(arena, 0xFFFF44DD);
|
|
default_color_table.arrays[defcolor_mark] = make_colors(arena, 0xFF494949);
|
|
default_color_table.arrays[defcolor_text_default] = make_colors(arena, 0xFF90B080);
|
|
default_color_table.arrays[defcolor_comment] = make_colors(arena, 0xFF2090F0);
|
|
default_color_table.arrays[defcolor_comment_pop] = make_colors(arena, 0xFF00A000, 0xFFA00000);
|
|
default_color_table.arrays[defcolor_keyword] = make_colors(arena, 0xFFD08F20);
|
|
default_color_table.arrays[defcolor_str_constant] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_char_constant] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_int_constant] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_float_constant] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_bool_constant] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_preproc] = make_colors(arena, 0xFFA0B8A0);
|
|
default_color_table.arrays[defcolor_include] = make_colors(arena, 0xFF50FF30);
|
|
default_color_table.arrays[defcolor_special_character] = make_colors(arena, 0xFFFF0000);
|
|
default_color_table.arrays[defcolor_ghost_character] = make_colors(arena, 0xFF4E5E46);
|
|
default_color_table.arrays[defcolor_highlight_junk] = make_colors(arena, 0xFF3A0000);
|
|
default_color_table.arrays[defcolor_highlight_white] = make_colors(arena, 0xFF003A3A);
|
|
default_color_table.arrays[defcolor_paste] = make_colors(arena, 0xFFDDEE00);
|
|
default_color_table.arrays[defcolor_undo] = make_colors(arena, 0xFF00DDEE);
|
|
default_color_table.arrays[defcolor_back_cycle] = make_colors(arena, 0xFF130707, 0xFF071307, 0xFF070713, 0xFF131307);
|
|
default_color_table.arrays[defcolor_text_cycle] = make_colors(arena, 0xFFA00000, 0xFF00A000, 0xFF0030B0, 0xFFA0A000);
|
|
default_color_table.arrays[defcolor_line_numbers_back] = make_colors(arena, 0xFF101010);
|
|
default_color_table.arrays[defcolor_line_numbers_text] = make_colors(arena, 0xFF404040);
|
|
|
|
active_color_table = default_color_table;
|
|
}
|
|
|
|
////////////////////////////////
|
|
|
|
function void
|
|
set_active_color(Color_Table *table){
|
|
if (table != 0){
|
|
active_color_table = *table;
|
|
}
|
|
}
|
|
|
|
function void
|
|
save_theme(Color_Table table, String_Const_u8 name){
|
|
Color_Table_Node *node = push_array(&global_theme_arena, Color_Table_Node, 1);
|
|
sll_queue_push(global_theme_list.first, global_theme_list.last, node);
|
|
global_theme_list.count += 1;
|
|
node->name = push_string_copy(&global_theme_arena, name);
|
|
node->table = table;
|
|
}
|
|
|
|
////////////////////////////////
|
|
|
|
function Color_Table*
|
|
get_color_table_by_name(String_Const_u8 name){
|
|
Color_Table *result = 0;
|
|
for (Color_Table_Node *node = global_theme_list.first;
|
|
node != 0;
|
|
node = node->next){
|
|
if (string_match(node->name, name)){
|
|
result = &node->table;
|
|
break;
|
|
}
|
|
}
|
|
return(result);
|
|
}
|
|
|
|
// BOTTOM
|