2020-01-02 02:41:43 +00:00
|
|
|
//
|
|
|
|
// File: foldhaus_platform.h
|
|
|
|
// Author: Peter Slattery
|
|
|
|
// Creation Date: 2020-01-01
|
|
|
|
//
|
|
|
|
#ifndef FOLDHAUS_PLATFORM_H
|
|
|
|
|
2019-12-31 04:26:28 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
2019-12-26 16:11:48 +00:00
|
|
|
#define GS_LANGUAGE_NO_PROFILER_DEFINES
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "..\gs_libs\gs_language.h"
|
2019-12-31 06:16:14 +00:00
|
|
|
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "..\gs_libs\gs_radix_sort.h"
|
|
|
|
#include "..\gs_libs\gs_list.h"
|
|
|
|
#include "..\gs_libs\gs_bucket.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2019-12-23 01:47:26 +00:00
|
|
|
#define GS_MEMORY_TRACK_ALLOCATIONS
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "..\gs_libs\gs_memory_arena.h"
|
2019-12-23 01:47:26 +00:00
|
|
|
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "..\gs_libs\gs_string.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
|
2020-02-05 07:16:41 +00:00
|
|
|
#include "foldhaus_debug.h"
|
2019-07-19 20:56:21 +00:00
|
|
|
global_variable debug_services* GlobalDebugServices;
|
|
|
|
|
2020-01-21 06:56:36 +00:00
|
|
|
#include "..\gs_libs\gs_vector_matrix.h"
|
|
|
|
#include "..\gs_libs\gs_input.h"
|
2019-10-30 14:28:02 +00:00
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#include "foldhaus_renderer.h"
|
|
|
|
|
|
|
|
typedef struct context context;
|
|
|
|
|
|
|
|
// Application Functions
|
|
|
|
|
2020-02-06 04:33:12 +00:00
|
|
|
#define INITIALIZE_APPLICATION(name) void name(context Context)
|
2019-07-19 20:56:21 +00:00
|
|
|
typedef INITIALIZE_APPLICATION(initialize_application);
|
|
|
|
|
2020-03-13 05:42:59 +00:00
|
|
|
#define UPDATE_AND_RENDER(name) void name(context* Context, input_queue InputQueue, render_command_buffer* RenderBuffer)
|
2019-07-19 20:56:21 +00:00
|
|
|
typedef UPDATE_AND_RENDER(update_and_render);
|
|
|
|
|
2020-02-06 04:33:12 +00:00
|
|
|
#define RELOAD_STATIC_DATA(name) void name(context Context, debug_services* DebugServices)
|
2019-07-19 20:56:21 +00:00
|
|
|
typedef RELOAD_STATIC_DATA(reload_static_data);
|
|
|
|
|
|
|
|
#define CLEANUP_APPLICATION(name) void name(context Context)
|
|
|
|
typedef CLEANUP_APPLICATION(cleanup_application);
|
|
|
|
|
|
|
|
// Platform Functions
|
|
|
|
|
2020-02-06 04:33:12 +00:00
|
|
|
struct window_info
|
|
|
|
{
|
|
|
|
char* Name;
|
|
|
|
s32 Width;
|
|
|
|
s32 Height;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct window window;
|
|
|
|
|
|
|
|
#define PLATFORM_MEMORY_NO_ERROR 0
|
|
|
|
enum platform_memory_error
|
|
|
|
{
|
|
|
|
PlatformMemory_NoError,
|
|
|
|
PlatformMemory_FileNotFound,
|
|
|
|
|
|
|
|
PlatformMemory_UnknownError, // You should implement handling this when you see it
|
|
|
|
};
|
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
// TODO(Peter): Change this to just be data
|
|
|
|
// - Base, and Size
|
2020-02-06 04:33:12 +00:00
|
|
|
struct platform_memory_result
|
|
|
|
{
|
|
|
|
u8* Base;
|
|
|
|
s32 Size;
|
|
|
|
platform_memory_error Error;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct texture_buffer
|
|
|
|
{
|
|
|
|
u8* Memory;
|
|
|
|
s32 Width;
|
|
|
|
s32 Height;
|
|
|
|
s32 Pitch;
|
|
|
|
s32 BytesPerPixel;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct system_path
|
|
|
|
{
|
|
|
|
char* Path;
|
|
|
|
s32 PathLength;
|
|
|
|
s32 IndexOfLastSlash;
|
|
|
|
};
|
|
|
|
|
2020-05-30 22:09:06 +00:00
|
|
|
#define PLATFORM_READ_ENTIRE_FILE(name) platform_memory_result name(string Path)
|
2020-02-06 04:33:12 +00:00
|
|
|
typedef PLATFORM_READ_ENTIRE_FILE(platform_read_entire_file);
|
|
|
|
|
2020-05-30 22:09:06 +00:00
|
|
|
#define PLATFORM_WRITE_ENTIRE_FILE(name) b32 name(string Path, u8* Contents, s32 Size)
|
2020-02-06 04:33:12 +00:00
|
|
|
typedef PLATFORM_WRITE_ENTIRE_FILE(platform_write_entire_file);
|
|
|
|
|
2020-05-30 22:09:06 +00:00
|
|
|
#define PLATFORM_GET_FILE_PATH(name) b32 name(string* PathBuffer, const char* FilterStrings)
|
2020-02-06 04:33:12 +00:00
|
|
|
typedef PLATFORM_GET_FILE_PATH(platform_get_file_path);
|
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
struct platform_file_handler
|
|
|
|
{
|
|
|
|
platform_read_entire_file* ReadEntireFile;
|
|
|
|
platform_write_entire_file* WriteEntireFile;
|
|
|
|
platform_get_file_path* GetFilePath;
|
|
|
|
};
|
|
|
|
|
2020-02-06 04:33:12 +00:00
|
|
|
#define PLATFORM_GET_GPU_TEXTURE_HANDLE(name) s32 name(u8* Memory, s32 Width, s32 Height)
|
|
|
|
typedef PLATFORM_GET_GPU_TEXTURE_HANDLE(platform_get_gpu_texture_handle);
|
|
|
|
|
|
|
|
struct platform_network_address
|
|
|
|
{
|
|
|
|
s32 Family;
|
|
|
|
u16 Port;
|
|
|
|
u32 Address;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef s32 platform_socket_handle;
|
|
|
|
typedef s32 platform_network_address_handle;
|
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
#define PLATFORM_GET_SOCKET_HANDLE(name) platform_socket_handle name(s32 Multicast_TimeToLive)
|
2020-02-06 04:33:12 +00:00
|
|
|
typedef PLATFORM_GET_SOCKET_HANDLE(platform_get_socket_handle);
|
|
|
|
|
|
|
|
#define PLATFORM_GET_SEND_ADDRESS_HANDLE(name) platform_network_address_handle name(s32 AddressFamily, u16 Port, u32 Address)
|
|
|
|
typedef PLATFORM_GET_SEND_ADDRESS_HANDLE(platform_get_send_address);
|
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
#define PLATFORM_SET_SOCKET_OPTION(name) s32 name(platform_socket_handle SocketHandle, s32 Level, s32 Option, const char* OptionValue, s32 OptionLength)
|
2020-02-06 04:33:12 +00:00
|
|
|
typedef PLATFORM_SET_SOCKET_OPTION(platform_set_socket_option);
|
|
|
|
|
|
|
|
#define PLATFORM_SEND_TO(name) s32 name(platform_socket_handle SocketHandle, u32 Address, u32 Port, const char* Buffer, s32 BufferLength, s32 Flags)
|
|
|
|
typedef PLATFORM_SEND_TO(platform_send_to);
|
|
|
|
|
|
|
|
#define PLATFORM_CLOSE_SOCKET(name) void name(platform_socket_handle SocketHandle)
|
|
|
|
typedef PLATFORM_CLOSE_SOCKET(platform_close_socket);
|
|
|
|
|
2020-02-05 08:03:56 +00:00
|
|
|
// File IO
|
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
// TODO(Peter):
|
2020-02-05 08:03:56 +00:00
|
|
|
struct directory_listing
|
|
|
|
{
|
|
|
|
string Path;
|
|
|
|
directory_listing* Next;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Font
|
2020-02-06 04:33:12 +00:00
|
|
|
struct platform_font_info
|
|
|
|
{
|
|
|
|
s32 PixelHeight;
|
|
|
|
s32 Ascent, Descent, Leading;
|
|
|
|
s32 MaxCharWidth;
|
|
|
|
s32 CodepointStart;
|
|
|
|
s32 CodepointOnePastLast;
|
|
|
|
};
|
2019-07-22 06:30:53 +00:00
|
|
|
|
2019-10-30 16:10:15 +00:00
|
|
|
enum font_weight
|
|
|
|
{
|
|
|
|
FontWeight_Invalid = 0,
|
|
|
|
FontWeight_Thin = 100,
|
|
|
|
FontWeight_ExtraLight = 200,
|
|
|
|
FontWeight_Light = 300,
|
|
|
|
FontWeight_Normal = 400,
|
|
|
|
FontWeight_Medium = 500,
|
|
|
|
FontWeight_SemiBold = 600,
|
|
|
|
FontWeight_Bold = 700,
|
|
|
|
FontWeight_ExtraBold = 800,
|
|
|
|
FontWeight_Heavy = 900,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define GET_FONT_INFO(name) platform_font_info name(char* FontName, s32 PixelHeight, font_weight FontWeight, b32 Italic, b32 Underline, b32 Strikeout)
|
2019-07-22 06:30:53 +00:00
|
|
|
typedef GET_FONT_INFO(platform_get_font_info);
|
|
|
|
|
|
|
|
#define DRAW_FONT_CODEPOINT(name) void name(u8* DestBuffer, s32 DestBufferWidth, s32 DestBufferHeight, u32 XOffset, u32 YOffset, char Codepoint, platform_font_info FontInfo, u32* OutWidth, u32* OutHeight)
|
|
|
|
typedef DRAW_FONT_CODEPOINT(platform_draw_font_codepoint);
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
// Worker Threads
|
|
|
|
|
2019-11-02 20:17:23 +00:00
|
|
|
#define PLATFORM_THREAD_COUNT 4
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
#define THREADED_WORK_PROC(name) void name(s32 ThreadID, void* Data)
|
|
|
|
typedef THREADED_WORK_PROC(threaded_work_proc);
|
|
|
|
|
|
|
|
typedef struct work_queue work_queue;
|
|
|
|
|
2020-02-29 23:07:56 +00:00
|
|
|
#define PUSH_WORK_ON_QUEUE(name) void name(work_queue* Queue, threaded_work_proc* WorkProc, void* Data, char* JobName)
|
2019-07-19 20:56:21 +00:00
|
|
|
typedef PUSH_WORK_ON_QUEUE(push_work_on_queue);
|
|
|
|
|
|
|
|
#define DO_QUEUE_WORK_UNTIL_DONE(name) void name(work_queue* Queue, s32 ThreadID)
|
|
|
|
typedef DO_QUEUE_WORK_UNTIL_DONE(do_queue_work_until_done);
|
|
|
|
|
|
|
|
#define RESET_WORK_QUEUE(name) void name(work_queue* Queue)
|
|
|
|
typedef RESET_WORK_QUEUE(reset_work_queue);
|
|
|
|
|
|
|
|
struct worker_thread_job
|
|
|
|
{
|
|
|
|
void* Data;
|
|
|
|
threaded_work_proc* WorkProc;
|
2020-02-29 23:07:56 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
char* JobName;
|
|
|
|
#endif
|
2019-07-19 20:56:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct work_queue
|
|
|
|
{
|
2020-02-05 07:16:41 +00:00
|
|
|
void* SemaphoreHandle;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
u32 JobsMax;
|
|
|
|
u32 volatile JobsCount;
|
|
|
|
u32 volatile NextJobIndex;
|
|
|
|
u32 volatile JobsCompleted;
|
2020-02-29 23:07:56 +00:00
|
|
|
worker_thread_job* Jobs;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
// Work Queue
|
|
|
|
push_work_on_queue* PushWorkOnQueue;
|
|
|
|
do_queue_work_until_done* DoQueueWorkUntilDone;
|
|
|
|
reset_work_queue* ResetWorkQueue;
|
|
|
|
};
|
|
|
|
|
|
|
|
RESET_WORK_QUEUE(ResetWorkQueue)
|
|
|
|
{
|
|
|
|
for (u32 i = 0; i < Queue->JobsMax; i++)
|
|
|
|
{
|
|
|
|
Queue->Jobs[i].Data = 0;
|
|
|
|
Queue->Jobs[i].WorkProc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
Queue->JobsCount = 0;
|
|
|
|
Queue->NextJobIndex = 0;
|
|
|
|
Queue->JobsCompleted = 0;
|
|
|
|
}
|
|
|
|
|
2020-02-06 04:33:12 +00:00
|
|
|
// Time
|
|
|
|
|
|
|
|
internal r32
|
|
|
|
GetSecondsElapsed (s64 Start, s64 End, s64 PerformanceCountFrequency)
|
|
|
|
{
|
|
|
|
r32 Result = ((r32)(End - Start) / (r32) PerformanceCountFrequency);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
struct context
|
|
|
|
{
|
|
|
|
u8* MemoryBase;
|
|
|
|
u32 MemorySize;
|
|
|
|
|
|
|
|
b32 WindowIsVisible;
|
2019-12-28 18:51:47 +00:00
|
|
|
rect WindowBounds;
|
2019-07-19 20:56:21 +00:00
|
|
|
r32 DeltaTime;
|
2020-03-13 05:42:59 +00:00
|
|
|
mouse_state Mouse;
|
2019-07-19 20:56:21 +00:00
|
|
|
|
|
|
|
// Application Services
|
|
|
|
initialize_application* InitializeApplication;
|
|
|
|
reload_static_data* ReloadStaticData;
|
|
|
|
update_and_render* UpdateAndRender;
|
|
|
|
cleanup_application* CleanupApplication;
|
|
|
|
|
|
|
|
// Platform Services
|
|
|
|
work_queue* GeneralWorkQueue;
|
|
|
|
|
2020-06-15 22:36:50 +00:00
|
|
|
platform_memory_handler PlatformMemory;
|
2020-05-30 21:54:37 +00:00
|
|
|
platform_file_handler FileHandler;
|
|
|
|
|
2019-07-19 20:56:21 +00:00
|
|
|
platform_write_entire_file* PlatformWriteEntireFile;
|
|
|
|
platform_get_file_path* PlatformGetFilePath;
|
|
|
|
platform_get_gpu_texture_handle* PlatformGetGPUTextureHandle;
|
2019-07-22 06:30:53 +00:00
|
|
|
platform_get_font_info* PlatformGetFontInfo;
|
|
|
|
platform_draw_font_codepoint* PlatformDrawFontCodepoint;
|
2019-07-19 20:56:21 +00:00
|
|
|
platform_get_socket_handle* PlatformGetSocketHandle;
|
|
|
|
platform_set_socket_option* PlatformSetSocketOption;
|
|
|
|
platform_send_to* PlatformSendTo;
|
|
|
|
platform_close_socket* PlatformCloseSocket;
|
|
|
|
};
|
2020-01-02 02:41:43 +00:00
|
|
|
|
2020-05-30 21:54:37 +00:00
|
|
|
// File Handler
|
|
|
|
internal platform_memory_result
|
2020-05-30 22:09:06 +00:00
|
|
|
ReadEntireFile(platform_file_handler FileHandler, string Path)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
|
|
|
platform_memory_result Result = FileHandler.ReadEntireFile(Path);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
internal platform_memory_result
|
2020-05-30 22:09:06 +00:00
|
|
|
ReadEntireFile(context Context, string Path)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
|
|
|
return ReadEntireFile(Context.FileHandler, Path);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
2020-05-30 22:09:06 +00:00
|
|
|
WriteEntireFile(platform_file_handler FileHandler, string Path, u8* Contents, u32 Size)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
|
|
|
// TODO(Peter): Overload to take a data struct instead of Contents And Size
|
|
|
|
b32 Result = FileHandler.WriteEntireFile(Path, Contents, Size);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
internal b32
|
2020-05-30 22:09:06 +00:00
|
|
|
WriteEntireFile(context Context, string Path, u8* Contents, u32 Size)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
|
|
|
return WriteEntireFile(Context.FileHandler, Path, Contents, Size);
|
|
|
|
}
|
|
|
|
|
|
|
|
internal b32
|
2020-05-30 22:09:06 +00:00
|
|
|
GetFilePath(platform_file_handler FileHandler, string* PathBuffer, char* FilterStrings)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
2020-05-30 22:09:06 +00:00
|
|
|
b32 Result = FileHandler.GetFilePath(PathBuffer, (const char*)FilterStrings);
|
2020-05-30 21:54:37 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
internal b32
|
2020-05-30 22:09:06 +00:00
|
|
|
GetFilePath(context Context, string* PathBuffer, char* FilterStrings)
|
2020-05-30 21:54:37 +00:00
|
|
|
{
|
2020-05-30 22:09:06 +00:00
|
|
|
return GetFilePath(Context.FileHandler, PathBuffer, FilterStrings);
|
2020-05-30 21:54:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-02 02:41:43 +00:00
|
|
|
|
|
|
|
#define FOLDHAUS_PLATFORM_H
|
|
|
|
#endif // FOLDHAUS_PLATFORM_H
|