Commit Graph

316 Commits

Author SHA1 Message Date
Justin Scofield
0b9f7ee6fa Refactor includes for improved organization and clarity 2024-11-18 18:01:14 -05:00
scawful
bf06fff0dc Refactor input handling in Controller to improve event processing structure 2024-11-18 16:58:06 -05:00
scawful
36e5f7a150 Refactor input handling in Emulator and Controller for improved key event management 2024-11-18 14:34:08 -05:00
scawful
f630aa88a2 Refactor command manager and editor includes for improved organization and functionality 2024-11-18 14:05:54 -05:00
scawful
89774ddab4 Refactor AppDelegate header and implementation for improved readability and organization 2024-11-15 23:50:58 -05:00
scawful
b336d14233 Refactor include paths and remove redundant headers in core and editor modules 2024-11-15 23:38:44 -05:00
scawful
3cce624f59 Add absl/strings/str_format.h include to renderer.h 2024-11-15 21:21:27 -05:00
scawful
876a83f61c Add font loading functionality and refactor font handling in core 2024-11-15 21:21:13 -05:00
scawful
fbb46d571a Housekeeping 2024-11-14 13:28:42 -05:00
scawful
e3ed705336 Refactor tab handling in Dungeon and Graphics editors for improved readability 2024-11-13 09:42:54 -05:00
scawful
0ebcd9a178 Add kSaveGraphicsSheet flag to ExperimentFlags for graphics sheet saving 2024-11-13 09:30:49 -05:00
scawful
ab7fa2ecac Rename InitializeCocoa to yaze_run_cocoa_app_delegate and update its implementation; streamline Cocoa app delegate handling 2024-11-13 09:16:46 -05:00
scawful
7798d769a5 Refactor bitmap update methods to remove unnecessary parameters; simplify texture updating in Renderer and Bitmap classes 2024-11-13 09:16:16 -05:00
scawful
8e8b3ed2f7 Refactor Renderer class to remove inheritance from ExperimentFlags; streamline bitmap rendering and updating methods 2024-11-13 08:53:24 -05:00
scawful
e100423d58 Enhance config directory handling and improve platform-specific path management 2024-11-10 16:58:19 -05:00
scawful
6dd8a36e5c Refactor input handling in Controller: Remove unused key events, streamline window size handling, and improve event processing for better performance and clarity 2024-11-10 12:11:17 -05:00
scawful
d7f62f4fd4 Refactor project header and source files: update includes and restore method declarations for improved organization and clarity 2024-11-10 09:03:35 -05:00
scawful
cd3540aaa2 Add kYazeVersion constant to common.h and remove duplicate definition from constants.h 2024-11-10 09:03:11 -05:00
scawful
8555dacdb5 Refactor project structure: remove labeling.h and update references to use project.h, enhancing code clarity and maintainability 2024-11-09 21:04:39 -05:00
scawful
a1443e8187 Refactor user interface management: simplify UI components and remove deprecated classes to enhance maintainability 2024-11-09 20:53:13 -05:00
scawful
ba5c86f0ba Refactor recent files management: consolidate RecentFilesManager into project.h and remove redundant recent_files.h 2024-11-09 20:38:00 -05:00
scawful
d9243b26f7 Refactor message handling: remove MessageDispatcher, MessageFilter, and related classes to streamline codebase 2024-11-09 19:17:36 -05:00
scawful
b06d632ef9 Refactor project management: create Project class for handling project file operations and remove message handling code 2024-11-09 19:17:24 -05:00
scawful
e21bdb3f44 Add documentation for file dialog and resource path functions 2024-11-08 21:02:24 -05:00
scawful
83949d23b5 Remove unused includes in common.h for code cleanup 2024-11-08 00:11:43 -05:00
scawful
38dc061b75 Add LoadConfigFile to Controller, include file_util src in build 2024-11-02 10:35:26 -05:00
scawful
0d5618a5ba Update LoadFile, GetFileExtension, GetFileName 2024-11-02 10:25:30 -05:00
scawful
665d58aa97 General cleanup 2024-11-02 00:10:24 -05:00
scawful
26b54fbee8 Refactor UppercaseHexWord function to include an optional leading parameter 2024-10-05 13:29:13 -04:00
scawful
616c85ab1c unused include housekeeping 2024-10-05 11:07:14 -04:00
scawful
a64700d601 Load sys fonts if assets dir not found, return err if unsupported 2024-10-04 01:33:13 -04:00
scawful
4e47cd3c76 update font loading for macOS bundle resources 2024-09-07 09:59:20 -04:00
scawful
374eebfac4 header include cleanup 2024-09-07 09:55:01 -04:00
scawful
84df108204 fix CheckVersion string_view format bug 2024-08-31 09:23:17 -04:00
scawful
12ce96e533 chore: Refactor CMakeLists.txt and app.cmake files for better organization 2024-08-30 02:57:14 -04:00
scawful
eda3c4f5ef feat: Add option to load custom overworld data from ROM and enable UI 2024-08-25 16:39:22 -04:00
scawful
d5650c8bb6 chore: Refactor audio loading and handling in Controller class 2024-08-25 14:46:35 -04:00
scawful
57e8dc0e10 chore: Update font_loader.cc and xcschememanagement.plist 2024-08-21 21:08:55 -04:00
scawful
ea8a851539 clang tidy cleanups 2024-08-21 00:37:14 -04:00
scawful
f847e3b67c update yaze version 2024-08-20 22:50:35 -04:00
scawful
7b33313281 big cleanup 2024-08-20 22:10:35 -04:00
scawful
dc244ac02d Refactor sprite editor to use Zelda3 namespace for default sprite names 2024-08-20 21:42:50 -04:00
scawful
a8ed9b7f92 remove magic numbers, enforce const correctness 2024-08-20 21:31:59 -04:00
scawful
49611d4944 big cleanup, replace Bytes alias with std::vector<uint8_t> to reduce ambiguity 2024-08-20 12:02:47 -04:00
scawful
2443336f9d add GetLabel to ResourceLabelManager 2024-08-20 11:06:06 -04:00
Justin Scofield
6d7e7a49aa windows file dialog wrapper 2024-08-18 09:35:51 -04:00
Justin Scofield
7ae53a3814 windows font family loader 2024-08-18 09:35:41 -04:00
scawful
1cc1fce3d0 chore: Update message passing method in NotificationCenter 2024-08-16 17:07:13 -04:00
scawful
f0ec2ec35d add notification center as apart of message passing 2024-08-14 23:46:29 -04:00
scawful
97959f2ac7 add message passing system 2024-08-14 23:46:17 -04:00