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
|
|
|
|
|
|
|
|
struct file_view_state
|
|
|
|
{
|
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-03-08 23:15:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
input_command* FileView_Commands = 0;
|
|
|
|
s32 FileView_CommandsCount = 0;
|
|
|
|
|
2020-09-07 20:42:00 +00:00
|
|
|
internal void
|
|
|
|
FileViewUpdateWorkingDirectory(gs_const_string WorkingDirectory, file_view_state* State, context Context)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
2020-09-07 21:29:32 +00:00
|
|
|
else if (StringsEqual(LastDir, ConstString(".")))
|
|
|
|
{
|
|
|
|
SanitizedDirectory = Substring(SanitizedDirectory, 0, LastSlashIndex);
|
|
|
|
}
|
2020-09-07 21:28:41 +00:00
|
|
|
|
2020-09-07 20:42:00 +00:00
|
|
|
State->WorkingDirectory = PushString(&State->FileNamesArena, WorkingDirectory.Length + 2);
|
2020-09-07 21:28:41 +00:00
|
|
|
PrintF(&State->WorkingDirectory, "%S", SanitizedDirectory);
|
2020-09-07 20:42:00 +00:00
|
|
|
if (State->WorkingDirectory.Str[State->WorkingDirectory.Length - 1] != '\\')
|
|
|
|
{
|
|
|
|
AppendPrintF(&State->WorkingDirectory, "\\");
|
|
|
|
}
|
|
|
|
if (State->WorkingDirectory.Str[State->WorkingDirectory.Length - 1] != '*')
|
|
|
|
{
|
|
|
|
AppendPrintF(&State->WorkingDirectory, "*");
|
|
|
|
}
|
|
|
|
|
|
|
|
State->FileNames = EnumerateDirectory(Context.ThreadContext.FileHandler, &State->FileNamesArena, State->WorkingDirectory.ConstString, EnumerateDirectory_IncludeDirectories);
|
|
|
|
}
|
|
|
|
|
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-09-07 20:42:00 +00:00
|
|
|
Panel->PanelStateMemory = (u8*)FileViewState;
|
|
|
|
FileViewState->FileNamesArena = CreateMemoryArena(Context.ThreadContext.Allocator);
|
2020-09-07 21:35:58 +00:00
|
|
|
FileViewUpdateWorkingDirectory(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-07-18 19:00:14 +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-09-07 20:42:00 +00:00
|
|
|
file_view_state* FileViewState = (file_view_state*)Panel.PanelStateMemory;
|
|
|
|
ui_layout Layout = ui_CreateLayout(State->Interface, PanelBounds);
|
|
|
|
|
|
|
|
// Header
|
2020-09-07 21:35:58 +00:00
|
|
|
ui_LayoutDrawString(&State->Interface, &Layout, FileViewState->WorkingDirectory, v4{0, 1, 0, 1});
|
2020-03-08 23:15:26 +00:00
|
|
|
|
2020-09-07 20:42:00 +00:00
|
|
|
// File Display
|
|
|
|
for (u32 i = 0; i < FileViewState->FileNames.Count; i++)
|
|
|
|
{
|
|
|
|
gs_file_info File = FileViewState->FileNames.Values[i];
|
2020-09-07 21:35:58 +00:00
|
|
|
|
|
|
|
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);
|
2020-09-07 21:28:41 +00:00
|
|
|
if (ui_LayoutListButton(&State->Interface, &Layout, PathString, i))
|
|
|
|
{
|
|
|
|
if (File.IsDirectory)
|
|
|
|
{
|
|
|
|
FileViewUpdateWorkingDirectory(File.Path, FileViewState, Context);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO(pjs): Select the file
|
|
|
|
}
|
|
|
|
}
|
2020-09-07 20:42:00 +00:00
|
|
|
}
|
2020-03-08 23:15:26 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define FOLDHAUS_PANEL_FILE_VIEW_H
|
|
|
|
#endif // FOLDHAUS_PANEL_FILE_VIEW_H
|