2020-03-08 23:15:26 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_panel_file_view.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-03-08
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_PANEL_FILE_VIEW_H
|
|
|
|
|
2021-01-17 07:01:08 +00:00
|
|
|
enum file_view_mode
|
|
|
|
{
|
|
|
|
FileViewMode_Load,
|
|
|
|
FileViewMode_Save,
|
|
|
|
};
|
|
|
|
|
2020-03-08 23:15:26 +00:00
|
|
|
struct file_view_state
|
|
|
|
{
|
2021-01-17 07:01:08 +00:00
|
|
|
file_view_mode Mode;
|
|
|
|
|
2020-07-18 19:00:14 +00:00
|
|
|
gs_string WorkingDirectory;
|
2020-09-07 20:42:00 +00:00
|
|
|
gs_memory_arena FileNamesArena;
|
|
|
|
gs_file_info_array FileNames;
|
2020-10-18 22:31:53 +00:00
|
|
|
|
|
|
|
gs_file_info SelectedFile;
|
2020-03-08 23:15:26 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 07:01:08 +00:00
|
|
|
internal void
|
|
|
|
FileView_SetMode(panel* Panel, file_view_mode Mode)
|
|
|
|
{
|
|
|
|
file_view_state* FileViewState = Panel_GetStateStruct(Panel, file_view_state);
|
|
|
|
FileViewState->Mode = Mode;
|
|
|
|
}
|
|
|
|
|
2020-10-24 20:28:10 +00:00
|
|
|
internal void
|
|
|
|
FileView_Exit_(panel* FileViewPanel, app_state* State, context Context)
|
|
|
|
{
|
2021-01-17 07:01:08 +00:00
|
|
|
// TODO(pjs): Free State->FileNamesArena
|
|
|
|
|
2020-10-24 20:28:10 +00:00
|
|
|
Assert(FileViewPanel->IsModalOverrideFor != 0);
|
|
|
|
panel* ReturnTo = FileViewPanel->IsModalOverrideFor;
|
|
|
|
if (ReturnTo->ModalOverrideCB)
|
|
|
|
{
|
|
|
|
ReturnTo->ModalOverrideCB(FileViewPanel, State, Context);
|
|
|
|
}
|
|
|
|
Panel_PopModalOverride(ReturnTo, &State->PanelSystem);
|
|
|
|
}
|
|
|
|
|
|
|
|
global input_command* FileView_Commands = 0;
|
2020-03-08 23:15:26 +00:00
|
|
|
s32 FileView_CommandsCount = 0;
|
|
|
|
|
2020-09-07 20:42:00 +00:00
|
|
|
internal void
|
2021-01-17 07:01:08 +00:00
|
|
|
FileView_UpdateWorkingDirectory(gs_const_string WorkingDirectory, file_view_state* State, context Context)
|
2020-09-07 20:42:00 +00:00
|
|
|
{
|
|
|
|
ClearArena(&State->FileNamesArena);
|
|
|
|
|
2020-09-07 21:28:41 +00:00
|
|
|
gs_const_string SanitizedDirectory = WorkingDirectory;
|
|
|
|
|
|
|
|
u32 LastSlashIndex = FindLast(SanitizedDirectory, '\\');
|
|
|
|
gs_const_string LastDir = Substring(SanitizedDirectory, LastSlashIndex + 1, SanitizedDirectory.Length);
|
|
|
|
if (StringsEqual(LastDir, ConstString("..")))
|
|
|
|
{
|
|
|
|
u32 SecondLastSlashIndex = FindLast(SanitizedDirectory, LastSlashIndex - 1, '\\');
|
|
|
|
SanitizedDirectory = Substring(SanitizedDirectory, 0, SecondLastSlashIndex);
|
|
|
|
}
|
2021-01-17 07:01:08 +00:00
|
|
|
else if (StringsEqual(LastDir, ConstString(".")) && LastDir.Length > 1)
|
2020-09-07 21:29:32 +00:00
|
|
|
{
|
|
|
|
SanitizedDirectory = Substring(SanitizedDirectory, 0, LastSlashIndex);
|
|
|
|
}
|
2020-09-07 21:28:41 +00:00
|
|
|
|
2021-01-17 07:01:08 +00:00
|
|
|
gs_file_info NewWorkingDirectory = GetFileInfo(Context.ThreadContext.FileHandler, SanitizedDirectory);
|
|
|
|
if (NewWorkingDirectory.IsDirectory)
|
2020-09-07 20:42:00 +00:00
|
|
|
{
|
2021-01-17 07:01:08 +00:00
|
|
|
// NOTE(pjs): we might be printing from State->WorkingDirectory to State->WorkingDirectory
|
|
|
|
// in some cases. Shouldn't be a problem but it is unnecessary
|
|
|
|
PrintF(&State->WorkingDirectory, "%S", WorkingDirectory);
|
|
|
|
|
|
|
|
State->FileNames = EnumerateDirectory(Context.ThreadContext.FileHandler, &State->FileNamesArena, State->WorkingDirectory.ConstString, EnumerateDirectory_IncludeDirectories);
|
2020-09-07 20:42:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-08 23:15:26 +00:00
|
|
|
GSMetaTag(panel_init);
|
|
|
|
GSMetaTag(panel_type_file_view);
|
|
|
|
internal void
|
2020-09-07 20:42:00 +00:00
|
|
|
FileView_Init(panel* Panel, app_state* State, context Context)
|
2020-03-08 23:15:26 +00:00
|
|
|
{
|
|
|
|
// TODO: :FreePanelMemory
|
|
|
|
file_view_state* FileViewState = PushStruct(&State->Permanent, file_view_state);
|
2020-10-18 22:31:53 +00:00
|
|
|
Panel->StateMemory = StructToData(FileViewState, file_view_state);
|
2020-09-07 20:42:00 +00:00
|
|
|
FileViewState->FileNamesArena = CreateMemoryArena(Context.ThreadContext.Allocator);
|
2021-01-17 07:01:08 +00:00
|
|
|
|
|
|
|
// TODO(pjs): this shouldn't be stored in permanent
|
|
|
|
FileViewState->WorkingDirectory = PushString(&State->Permanent, 256);
|
|
|
|
FileView_UpdateWorkingDirectory(ConstString("."), FileViewState, Context);
|
2020-03-08 23:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GSMetaTag(panel_cleanup);
|
|
|
|
GSMetaTag(panel_type_file_view);
|
|
|
|
internal void
|
|
|
|
FileView_Cleanup(panel* Panel, app_state* State)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
GSMetaTag(panel_render);
|
|
|
|
GSMetaTag(panel_type_file_view);
|
|
|
|
internal void
|
2020-10-17 19:43:05 +00:00
|
|
|
FileView_Render(panel* Panel, rect2 PanelBounds, render_command_buffer* RenderBuffer, app_state* State, context Context)
|
2020-03-08 23:15:26 +00:00
|
|
|
{
|
2020-10-18 22:31:53 +00:00
|
|
|
file_view_state* FileViewState = Panel_GetStateStruct(Panel, file_view_state);
|
2021-01-17 07:01:08 +00:00
|
|
|
Assert(FileViewState->Mode == FileViewMode_Save);
|
|
|
|
|
2020-11-15 01:18:38 +00:00
|
|
|
ui_PushLayout(&State->Interface, PanelBounds, LayoutDirection_TopDown, MakeString("FileView Layout"));
|
2020-09-07 20:42:00 +00:00
|
|
|
{
|
2021-01-17 03:45:13 +00:00
|
|
|
if (ui_Button(&State->Interface, MakeString("Exit")))
|
|
|
|
{
|
|
|
|
FileView_Exit_(Panel, State, Context);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Header
|
2021-01-17 07:01:08 +00:00
|
|
|
if (ui_TextEntry(&State->Interface, MakeString("pwd"), &FileViewState->WorkingDirectory))
|
|
|
|
{
|
|
|
|
// if last character is a slash, update pwd, and clear the filter string
|
|
|
|
// otherwise update the filter string
|
|
|
|
gs_string Pwd = FileViewState->WorkingDirectory;
|
|
|
|
char LastChar = Pwd.Str[Pwd.Length - 1];
|
|
|
|
if (LastChar == '\\' || LastChar == '/')
|
|
|
|
{
|
|
|
|
FileView_UpdateWorkingDirectory(Pwd.ConstString, FileViewState, Context);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-09-07 21:35:58 +00:00
|
|
|
|
2021-01-17 03:45:13 +00:00
|
|
|
// File Display
|
|
|
|
ui_BeginList(&State->Interface, MakeString("Files"), 10, FileViewState->FileNames.Count);
|
|
|
|
for (u32 i = 0; i < FileViewState->FileNames.Count; i++)
|
2020-09-07 21:28:41 +00:00
|
|
|
{
|
2021-01-17 03:45:13 +00:00
|
|
|
gs_file_info File = FileViewState->FileNames.Values[i];
|
|
|
|
|
|
|
|
u32 LastSlashIndex = FindLast(File.Path, '\\');
|
|
|
|
gs_const_string FileName = Substring(File.Path, LastSlashIndex + 1, File.Path.Length);
|
|
|
|
gs_string PathString = PushString(State->Transient, FileName.Length);
|
|
|
|
PrintF(&PathString, "%S", FileName);
|
|
|
|
|
|
|
|
if (ui_LayoutListButton(&State->Interface, PathString, i))
|
2020-09-07 21:28:41 +00:00
|
|
|
{
|
2021-01-17 03:45:13 +00:00
|
|
|
if (File.IsDirectory)
|
|
|
|
{
|
2021-01-17 07:01:08 +00:00
|
|
|
FileView_UpdateWorkingDirectory(File.Path, FileViewState, Context);
|
2021-01-17 03:45:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileViewState->SelectedFile = File;
|
|
|
|
FileView_Exit_(Panel, State, Context);
|
|
|
|
}
|
2020-09-07 21:28:41 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-17 03:45:13 +00:00
|
|
|
ui_EndList(&State->Interface);
|
2020-09-07 20:42:00 +00:00
|
|
|
}
|
2021-01-17 02:55:31 +00:00
|
|
|
ui_PopLayout(&State->Interface, MakeString("FileView Layout"));
|
2020-03-08 23:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define FOLDHAUS_PANEL_FILE_VIEW_H
|
|
|
|
#endif // FOLDHAUS_PANEL_FILE_VIEW_H
|