mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 13:28:40 +00:00
re-slice views code; begin prepping for view rules / views being organized together
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: "default"
|
//~ rjf: default
|
||||||
|
|
||||||
DF_CORE_VIEW_RULE_VIZ_BLOCK_PROD_FUNCTION_DEF(default)
|
DF_CORE_VIEW_RULE_VIZ_BLOCK_PROD_FUNCTION_DEF(default)
|
||||||
{
|
{
|
||||||
|
|||||||
+761
-455
File diff suppressed because it is too large
Load Diff
+32
-457
@@ -5,268 +5,48 @@
|
|||||||
#define DEBUG_FRONTEND_VIEWS_H
|
#define DEBUG_FRONTEND_VIEWS_H
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: FileSystem @view_types
|
//~ rjf: Code View Types
|
||||||
|
|
||||||
typedef enum DF_FileSortKind
|
typedef U32 DF_CodeViewFlags;
|
||||||
|
enum
|
||||||
{
|
{
|
||||||
DF_FileSortKind_Null,
|
DF_CodeViewFlag_StickToBottom = (1<<0),
|
||||||
DF_FileSortKind_Filename,
|
|
||||||
DF_FileSortKind_LastModified,
|
|
||||||
DF_FileSortKind_Size,
|
|
||||||
DF_FileSortKind_COUNT
|
|
||||||
}
|
|
||||||
DF_FileSortKind;
|
|
||||||
|
|
||||||
typedef struct DF_FileInfo DF_FileInfo;
|
|
||||||
struct DF_FileInfo
|
|
||||||
{
|
|
||||||
String8 filename;
|
|
||||||
FileProperties props;
|
|
||||||
FuzzyMatchRangeList match_ranges;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct DF_FileInfoNode DF_FileInfoNode;
|
typedef U32 DF_CodeViewBuildFlags;
|
||||||
struct DF_FileInfoNode
|
enum
|
||||||
{
|
{
|
||||||
DF_FileInfoNode *next;
|
DF_CodeViewBuildFlag_Margins = (1<<0),
|
||||||
DF_FileInfo file_info;
|
DF_CodeViewBuildFlag_All = 0xffffffff,
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct DF_FileSystemViewPathState DF_FileSystemViewPathState;
|
typedef struct DF_CodeViewState DF_CodeViewState;
|
||||||
struct DF_FileSystemViewPathState
|
struct DF_CodeViewState
|
||||||
{
|
|
||||||
DF_FileSystemViewPathState *hash_next;
|
|
||||||
String8 normalized_path;
|
|
||||||
Vec2S64 cursor;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_FileSystemViewState DF_FileSystemViewState;
|
|
||||||
struct DF_FileSystemViewState
|
|
||||||
{
|
{
|
||||||
|
// rjf: stable state
|
||||||
B32 initialized;
|
B32 initialized;
|
||||||
U64 path_state_table_size;
|
S64 preferred_column;
|
||||||
DF_FileSystemViewPathState **path_state_table;
|
B32 drifted_for_search;
|
||||||
DF_FileSortKind sort_kind;
|
DF_CodeViewFlags flags;
|
||||||
Side sort_side;
|
|
||||||
Arena *cached_files_arena;
|
// rjf: per-frame command info
|
||||||
String8 cached_files_path;
|
S64 goto_line_num;
|
||||||
DF_FileSortKind cached_files_sort_kind;
|
B32 center_cursor;
|
||||||
Side cached_files_sort_side;
|
B32 contain_cursor;
|
||||||
U64 cached_file_count;
|
B32 watch_expr_at_mouse;
|
||||||
DF_FileInfo *cached_files;
|
Arena *find_text_arena;
|
||||||
F32 col_pcts[3];
|
String8 find_text_fwd;
|
||||||
|
String8 find_text_bwd;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct DF_CodeViewBuildResult DF_CodeViewBuildResult;
|
||||||
|
struct DF_CodeViewBuildResult
|
||||||
|
{
|
||||||
|
DI_KeyList dbgi_keys;
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Commands @view_types
|
//~ rjf: Watch View Types
|
||||||
|
|
||||||
typedef struct DF_CmdListerItem DF_CmdListerItem;
|
|
||||||
struct DF_CmdListerItem
|
|
||||||
{
|
|
||||||
DF_CmdSpec *cmd_spec;
|
|
||||||
U64 registrar_idx;
|
|
||||||
U64 ordering_idx;
|
|
||||||
FuzzyMatchRangeList name_match_ranges;
|
|
||||||
FuzzyMatchRangeList desc_match_ranges;
|
|
||||||
FuzzyMatchRangeList tags_match_ranges;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_CmdListerItemNode DF_CmdListerItemNode;
|
|
||||||
struct DF_CmdListerItemNode
|
|
||||||
{
|
|
||||||
DF_CmdListerItemNode *next;
|
|
||||||
DF_CmdListerItem item;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_CmdListerItemList DF_CmdListerItemList;
|
|
||||||
struct DF_CmdListerItemList
|
|
||||||
{
|
|
||||||
DF_CmdListerItemNode *first;
|
|
||||||
DF_CmdListerItemNode *last;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_CmdListerItemArray DF_CmdListerItemArray;
|
|
||||||
struct DF_CmdListerItemArray
|
|
||||||
{
|
|
||||||
DF_CmdListerItem *v;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: PendingFile @view_types
|
|
||||||
|
|
||||||
typedef struct DF_PendingFileViewState DF_PendingFileViewState;
|
|
||||||
struct DF_PendingFileViewState
|
|
||||||
{
|
|
||||||
Arena *deferred_cmd_arena;
|
|
||||||
DF_CmdList deferred_cmds;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: EntityLister @view_types
|
|
||||||
|
|
||||||
typedef struct DF_EntityListerItem DF_EntityListerItem;
|
|
||||||
struct DF_EntityListerItem
|
|
||||||
{
|
|
||||||
DF_Entity *entity;
|
|
||||||
FuzzyMatchRangeList name_match_ranges;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_EntityListerItemNode DF_EntityListerItemNode;
|
|
||||||
struct DF_EntityListerItemNode
|
|
||||||
{
|
|
||||||
DF_EntityListerItemNode *next;
|
|
||||||
DF_EntityListerItem item;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_EntityListerItemList DF_EntityListerItemList;
|
|
||||||
struct DF_EntityListerItemList
|
|
||||||
{
|
|
||||||
DF_EntityListerItemNode *first;
|
|
||||||
DF_EntityListerItemNode *last;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_EntityListerItemArray DF_EntityListerItemArray;
|
|
||||||
struct DF_EntityListerItemArray
|
|
||||||
{
|
|
||||||
DF_EntityListerItem *v;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: SystemProcesses @view_types
|
|
||||||
|
|
||||||
typedef struct DF_ProcessInfo DF_ProcessInfo;
|
|
||||||
struct DF_ProcessInfo
|
|
||||||
{
|
|
||||||
DMN_ProcessInfo info;
|
|
||||||
B32 is_attached;
|
|
||||||
FuzzyMatchRangeList attached_match_ranges;
|
|
||||||
FuzzyMatchRangeList name_match_ranges;
|
|
||||||
FuzzyMatchRangeList pid_match_ranges;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_ProcessInfoNode DF_ProcessInfoNode;
|
|
||||||
struct DF_ProcessInfoNode
|
|
||||||
{
|
|
||||||
DF_ProcessInfoNode *next;
|
|
||||||
DF_ProcessInfo info;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_ProcessInfoList DF_ProcessInfoList;
|
|
||||||
struct DF_ProcessInfoList
|
|
||||||
{
|
|
||||||
DF_ProcessInfoNode *first;
|
|
||||||
DF_ProcessInfoNode *last;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_ProcessInfoArray DF_ProcessInfoArray;
|
|
||||||
struct DF_ProcessInfoArray
|
|
||||||
{
|
|
||||||
DF_ProcessInfo *v;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Breakpoint @view_types
|
|
||||||
|
|
||||||
typedef struct DF_BreakpointViewState DF_BreakpointViewState;
|
|
||||||
struct DF_BreakpointViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
Vec2S32 selected_p;
|
|
||||||
F32 key_pct;
|
|
||||||
F32 val_pct;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Target @view_types
|
|
||||||
|
|
||||||
typedef struct DF_TargetViewState DF_TargetViewState;
|
|
||||||
struct DF_TargetViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
|
|
||||||
// rjf: pick file kind
|
|
||||||
DF_EntityKind pick_dst_kind;
|
|
||||||
|
|
||||||
// rjf: selection cursor
|
|
||||||
Vec2S64 cursor;
|
|
||||||
|
|
||||||
// rjf: text input state
|
|
||||||
TxtPt input_cursor;
|
|
||||||
TxtPt input_mark;
|
|
||||||
U8 input_buffer[1024];
|
|
||||||
U64 input_size;
|
|
||||||
B32 input_editing;
|
|
||||||
|
|
||||||
// rjf: table column pcts
|
|
||||||
F32 key_pct;
|
|
||||||
F32 value_pct;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: FilePathMap @view_types
|
|
||||||
|
|
||||||
typedef struct DF_FilePathMapViewState DF_FilePathMapViewState;
|
|
||||||
struct DF_FilePathMapViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
Vec2S64 cursor;
|
|
||||||
TxtPt input_cursor;
|
|
||||||
TxtPt input_mark;
|
|
||||||
U8 input_buffer[1024];
|
|
||||||
U64 input_size;
|
|
||||||
B32 input_editing;
|
|
||||||
DF_Handle pick_file_dst_map;
|
|
||||||
Side pick_file_dst_side;
|
|
||||||
F32 src_column_pct;
|
|
||||||
F32 dst_column_pct;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: AutoViewRules @view_types
|
|
||||||
|
|
||||||
typedef struct DF_AutoViewRulesViewState DF_AutoViewRulesViewState;
|
|
||||||
struct DF_AutoViewRulesViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
Vec2S64 cursor;
|
|
||||||
TxtPt input_cursor;
|
|
||||||
TxtPt input_mark;
|
|
||||||
U8 input_buffer[1024];
|
|
||||||
U64 input_size;
|
|
||||||
B32 input_editing;
|
|
||||||
F32 src_column_pct;
|
|
||||||
F32 dst_column_pct;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Modules @view_types
|
|
||||||
|
|
||||||
typedef struct DF_ModulesViewState DF_ModulesViewState;
|
|
||||||
struct DF_ModulesViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
DF_Handle selected_entity;
|
|
||||||
S64 selected_column;
|
|
||||||
B32 txt_editing;
|
|
||||||
TxtPt txt_cursor;
|
|
||||||
TxtPt txt_mark;
|
|
||||||
U8 txt_buffer[1024];
|
|
||||||
U64 txt_size;
|
|
||||||
DF_Handle pick_file_dst_entity;
|
|
||||||
F32 idx_col_pct;
|
|
||||||
F32 desc_col_pct;
|
|
||||||
F32 range_col_pct;
|
|
||||||
F32 dbg_col_pct;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Watch, Locals, Registers @view_types
|
|
||||||
|
|
||||||
typedef enum DF_WatchViewColumnKind
|
typedef enum DF_WatchViewColumnKind
|
||||||
{
|
{
|
||||||
@@ -372,206 +152,14 @@ struct DF_WatchViewState
|
|||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Code, Output @view_types
|
//~ rjf: Code View Functions
|
||||||
|
|
||||||
typedef U32 DF_CodeViewFlags;
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
DF_CodeViewFlag_StickToBottom = (1<<0),
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef U32 DF_CodeViewBuildFlags;
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
DF_CodeViewBuildFlag_Margins = (1<<0),
|
|
||||||
DF_CodeViewBuildFlag_All = 0xffffffff,
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_CodeViewState DF_CodeViewState;
|
|
||||||
struct DF_CodeViewState
|
|
||||||
{
|
|
||||||
// rjf: stable state
|
|
||||||
B32 initialized;
|
|
||||||
S64 preferred_column;
|
|
||||||
B32 drifted_for_search;
|
|
||||||
DF_CodeViewFlags flags;
|
|
||||||
|
|
||||||
// rjf: per-frame command info
|
|
||||||
S64 goto_line_num;
|
|
||||||
B32 center_cursor;
|
|
||||||
B32 contain_cursor;
|
|
||||||
B32 watch_expr_at_mouse;
|
|
||||||
Arena *find_text_arena;
|
|
||||||
String8 find_text_fwd;
|
|
||||||
String8 find_text_bwd;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_CodeViewBuildResult DF_CodeViewBuildResult;
|
|
||||||
struct DF_CodeViewBuildResult
|
|
||||||
{
|
|
||||||
DI_KeyList dbgi_keys;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Disassembly @view_types
|
|
||||||
|
|
||||||
typedef struct DF_DisasmViewState DF_DisasmViewState;
|
|
||||||
struct DF_DisasmViewState
|
|
||||||
{
|
|
||||||
B32 initialized;
|
|
||||||
TxtPt cursor;
|
|
||||||
TxtPt mark;
|
|
||||||
DASM_StyleFlags style_flags;
|
|
||||||
U64 goto_vaddr;
|
|
||||||
DF_CodeViewState cv;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Memory @view_types
|
|
||||||
|
|
||||||
typedef struct DF_MemoryViewState DF_MemoryViewState;
|
|
||||||
struct DF_MemoryViewState
|
|
||||||
{
|
|
||||||
B32 center_cursor;
|
|
||||||
B32 contain_cursor;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Bitmap @view_types
|
|
||||||
|
|
||||||
typedef struct DF_BitmapBoxDrawData DF_BitmapBoxDrawData;
|
|
||||||
struct DF_BitmapBoxDrawData
|
|
||||||
{
|
|
||||||
Rng2F32 src;
|
|
||||||
R_Handle texture;
|
|
||||||
F32 loaded_t;
|
|
||||||
B32 hovered;
|
|
||||||
Vec2S32 mouse_px;
|
|
||||||
F32 ui_per_bmp_px;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_BitmapCanvasBoxDrawData DF_BitmapCanvasBoxDrawData;
|
|
||||||
struct DF_BitmapCanvasBoxDrawData
|
|
||||||
{
|
|
||||||
Vec2F32 view_center_pos;
|
|
||||||
F32 zoom;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Geo3D @view_types
|
|
||||||
|
|
||||||
typedef struct DF_Geo3DViewState DF_Geo3DViewState;
|
|
||||||
struct DF_Geo3DViewState
|
|
||||||
{
|
|
||||||
F32 yaw;
|
|
||||||
F32 pitch;
|
|
||||||
F32 zoom;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_Geo3DBoxDrawData DF_Geo3DBoxDrawData;
|
|
||||||
struct DF_Geo3DBoxDrawData
|
|
||||||
{
|
|
||||||
F32 yaw;
|
|
||||||
F32 pitch;
|
|
||||||
F32 zoom;
|
|
||||||
R_Handle vertex_buffer;
|
|
||||||
R_Handle index_buffer;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Settings @view_types
|
|
||||||
|
|
||||||
typedef enum DF_SettingsItemKind
|
|
||||||
{
|
|
||||||
DF_SettingsItemKind_CategoryHeader,
|
|
||||||
DF_SettingsItemKind_GlobalSetting,
|
|
||||||
DF_SettingsItemKind_WindowSetting,
|
|
||||||
DF_SettingsItemKind_ThemeColor,
|
|
||||||
DF_SettingsItemKind_ThemePreset,
|
|
||||||
DF_SettingsItemKind_COUNT
|
|
||||||
}
|
|
||||||
DF_SettingsItemKind;
|
|
||||||
|
|
||||||
typedef struct DF_SettingsItem DF_SettingsItem;
|
|
||||||
struct DF_SettingsItem
|
|
||||||
{
|
|
||||||
DF_SettingsItemKind kind;
|
|
||||||
String8 kind_string;
|
|
||||||
String8 string;
|
|
||||||
FuzzyMatchRangeList kind_string_matches;
|
|
||||||
FuzzyMatchRangeList string_matches;
|
|
||||||
DF_IconKind icon_kind;
|
|
||||||
DF_SettingCode code;
|
|
||||||
DF_ThemeColor color;
|
|
||||||
DF_ThemePreset preset;
|
|
||||||
DF_SettingsItemKind category;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_SettingsItemNode DF_SettingsItemNode;
|
|
||||||
struct DF_SettingsItemNode
|
|
||||||
{
|
|
||||||
DF_SettingsItemNode *next;
|
|
||||||
DF_SettingsItem v;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_SettingsItemList DF_SettingsItemList;
|
|
||||||
struct DF_SettingsItemList
|
|
||||||
{
|
|
||||||
DF_SettingsItemNode *first;
|
|
||||||
DF_SettingsItemNode *last;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct DF_SettingsItemArray DF_SettingsItemArray;
|
|
||||||
struct DF_SettingsItemArray
|
|
||||||
{
|
|
||||||
DF_SettingsItem *v;
|
|
||||||
U64 count;
|
|
||||||
};
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Quick Sort Comparisons
|
|
||||||
|
|
||||||
internal int df_qsort_compare_file_info__default(DF_FileInfo *a, DF_FileInfo *b);
|
|
||||||
internal int df_qsort_compare_file_info__default_filtered(DF_FileInfo *a, DF_FileInfo *b);
|
|
||||||
internal int df_qsort_compare_file_info__filename(DF_FileInfo *a, DF_FileInfo *b);
|
|
||||||
internal int df_qsort_compare_file_info__last_modified(DF_FileInfo *a, DF_FileInfo *b);
|
|
||||||
internal int df_qsort_compare_file_info__size(DF_FileInfo *a, DF_FileInfo *b);
|
|
||||||
internal int df_qsort_compare_process_info(DF_ProcessInfo *a, DF_ProcessInfo *b);
|
|
||||||
internal int df_qsort_compare_cmd_lister__strength(DF_CmdListerItem *a, DF_CmdListerItem *b);
|
|
||||||
internal int df_qsort_compare_entity_lister__strength(DF_EntityListerItem *a, DF_EntityListerItem *b);
|
|
||||||
internal int df_qsort_compare_settings_item(DF_SettingsItem *a, DF_SettingsItem *b);
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Command Lister
|
|
||||||
|
|
||||||
internal DF_CmdListerItemList df_cmd_lister_item_list_from_needle(Arena *arena, String8 needle);
|
|
||||||
internal DF_CmdListerItemArray df_cmd_lister_item_array_from_list(Arena *arena, DF_CmdListerItemList list);
|
|
||||||
internal void df_cmd_lister_item_array_sort_by_strength__in_place(DF_CmdListerItemArray array);
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: System Process Lister
|
|
||||||
|
|
||||||
internal DF_ProcessInfoList df_process_info_list_from_query(Arena *arena, String8 query);
|
|
||||||
internal DF_ProcessInfoArray df_process_info_array_from_list(Arena *arena, DF_ProcessInfoList list);
|
|
||||||
internal void df_process_info_array_sort_by_strength__in_place(DF_ProcessInfoArray array);
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Entity Lister
|
|
||||||
|
|
||||||
internal DF_EntityListerItemList df_entity_lister_item_list_from_needle(Arena *arena, DF_EntityKind kind, DF_EntityFlags omit_flags, String8 needle);
|
|
||||||
internal DF_EntityListerItemArray df_entity_lister_item_array_from_list(Arena *arena, DF_EntityListerItemList list);
|
|
||||||
internal void df_entity_lister_item_array_sort_by_strength__in_place(DF_EntityListerItemArray array);
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Code Views
|
|
||||||
|
|
||||||
internal void df_code_view_init(DF_CodeViewState *cv, DF_View *view);
|
internal void df_code_view_init(DF_CodeViewState *cv, DF_View *view);
|
||||||
internal void df_code_view_cmds(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_CodeViewState *cv, DF_CmdList *cmds, String8 text_data, TXT_TextInfo *text_info, DASM_LineArray *dasm_lines, Rng1U64 dasm_vaddr_range, DI_Key dasm_dbgi_key);
|
internal void df_code_view_cmds(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_CodeViewState *cv, DF_CmdList *cmds, String8 text_data, TXT_TextInfo *text_info, DASM_LineArray *dasm_lines, Rng1U64 dasm_vaddr_range, DI_Key dasm_dbgi_key);
|
||||||
internal DF_CodeViewBuildResult df_code_view_build(Arena *arena, DF_Window *ws, DF_Panel *panel, DF_View *view, DF_CodeViewState *cv, DF_CodeViewBuildFlags flags, Rng2F32 rect, String8 text_data, TXT_TextInfo *text_info, DASM_LineArray *dasm_lines, Rng1U64 dasm_vaddr_range, DI_Key dasm_dbgi_key);
|
internal DF_CodeViewBuildResult df_code_view_build(Arena *arena, DF_Window *ws, DF_Panel *panel, DF_View *view, DF_CodeViewState *cv, DF_CodeViewBuildFlags flags, Rng2F32 rect, String8 text_data, TXT_TextInfo *text_info, DASM_LineArray *dasm_lines, Rng1U64 dasm_vaddr_range, DI_Key dasm_dbgi_key);
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Watch Views
|
//~ rjf: Watch View Functions
|
||||||
|
|
||||||
//- rjf: eval watch view instance -> eval view key
|
//- rjf: eval watch view instance -> eval view key
|
||||||
internal DF_EvalViewKey df_eval_view_key_from_eval_watch_view(DF_WatchViewState *ewv);
|
internal DF_EvalViewKey df_eval_view_key_from_eval_watch_view(DF_WatchViewState *ewv);
|
||||||
@@ -600,17 +188,4 @@ internal void df_watch_view_init(DF_WatchViewState *ewv, DF_View *view, DF_Watch
|
|||||||
internal void df_watch_view_cmds(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_WatchViewState *ewv, DF_CmdList *cmds);
|
internal void df_watch_view_cmds(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_WatchViewState *ewv, DF_CmdList *cmds);
|
||||||
internal void df_watch_view_build(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_WatchViewState *ewv, B32 modifiable, U32 default_radix, Rng2F32 rect);
|
internal void df_watch_view_build(DF_Window *ws, DF_Panel *panel, DF_View *view, DF_WatchViewState *ewv, B32 modifiable, U32 default_radix, Rng2F32 rect);
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Bitmap Views
|
|
||||||
|
|
||||||
internal Vec2F32 df_bitmap_screen_from_canvas_pos(Vec2F32 view_center_pos, F32 zoom, Rng2F32 rect, Vec2F32 cvs);
|
|
||||||
internal Rng2F32 df_bitmap_screen_from_canvas_rect(Vec2F32 view_center_pos, F32 zoom, Rng2F32 rect, Rng2F32 cvs);
|
|
||||||
internal Vec2F32 df_bitmap_canvas_from_screen_pos(Vec2F32 view_center_pos, F32 zoom, Rng2F32 rect, Vec2F32 scr);
|
|
||||||
internal Rng2F32 df_bitmap_canvas_from_screen_rect(Vec2F32 view_center_pos, F32 zoom, Rng2F32 rect, Rng2F32 scr);
|
|
||||||
|
|
||||||
////////////////////////////////
|
|
||||||
//~ rjf: Color RGBA Views
|
|
||||||
|
|
||||||
internal Vec4F32 df_rgba_from_eval_params(E_Eval eval, MD_Node *params);
|
|
||||||
|
|
||||||
#endif // DEBUG_FRONTEND_VIEWS_H
|
#endif // DEBUG_FRONTEND_VIEWS_H
|
||||||
|
|||||||
Reference in New Issue
Block a user