4coder/4coder_project_commands.h

97 lines
1.6 KiB
C
Raw Normal View History

2018-05-09 05:22:33 +00:00
/*
4coder_project_commands.h - type header paired with 4coder_project_commands.cpp
*/
// TOP
#if !defined(FCODER_PROJECT_COMMANDS_H)
#define FCODER_PROJECT_COMMANDS_H
enum{
OpenAllFilesFlag_Recursive = 1,
};
///////////////////////////////
struct Project_File_Pattern{
Absolutes absolutes;
};
struct Project_File_Pattern_Array{
Project_File_Pattern *patterns;
i32 count;
};
struct Project_File_Load_Path{
String path;
b32 recursive;
b32 relative;
};
struct Project_File_Load_Path_Array{
Project_File_Load_Path *paths;
i32 count;
};
struct Project_Command{
String name;
String cmd;
String out;
b32 footer_panel;
b32 save_dirty_files;
b32 cursor_at_end;
};
struct Project_Command_Array{
Project_Command *commands;
i32 count;
2018-05-09 05:22:33 +00:00
};
struct Project{
b32 loaded;
2018-05-09 05:22:33 +00:00
String dir;
String name;
2018-05-09 05:22:33 +00:00
Project_File_Pattern_Array pattern_array;
Project_File_Pattern_Array blacklist_pattern_array;
Project_File_Load_Path_Array load_path_array;
Project_Command_Array command_array;
i32 fkey_commands[16];
};
typedef i32 Project_OS_Match_Level;
2018-06-16 20:57:32 +00:00
enum{
ProjectOSMatchLevel_NoMatch = 0,
ProjectOSMatchLevel_PassiveMatch = 1,
ProjectOSMatchLevel_ActiveMatch = 2,
};
struct Project_Parse_Result{
Config *parsed;
Project *project;
2018-05-09 05:22:33 +00:00
};
///////////////////////////////
struct Project_Setup_Status{
b32 bat_exists;
b32 sh_exists;
b32 project_exists;
b32 everything_exists;
2018-05-09 05:22:33 +00:00
};
struct Project_Key_Strings{
b32 success;
String script_file;
String code_file;
String output_dir;
String binary_file;
};
2018-05-09 05:22:33 +00:00
#endif
// BOTTOM