backend-infra-engineer: Release v0.3.0 snapshot
This commit is contained in:
@@ -46,7 +46,17 @@
|
||||
abort();
|
||||
}
|
||||
|
||||
_controller = new yaze::app::core::Controller();
|
||||
_controller = new yaze::core::Controller();
|
||||
|
||||
// Setup Dear ImGui context
|
||||
IMGUI_CHECKVERSION();
|
||||
ImGui::CreateContext();
|
||||
ImGuiIO &io = ImGui::GetIO();
|
||||
(void)io;
|
||||
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
|
||||
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
|
||||
|
||||
yaze::gui::ColorsYaze();
|
||||
|
||||
SDL_SetMainReady();
|
||||
SDL_iOSSetEventPump(SDL_TRUE);
|
||||
@@ -67,32 +77,14 @@
|
||||
|
||||
// Enable native IME.
|
||||
SDL_SetHint(SDL_HINT_IME_SHOW_UI, "1");
|
||||
if (!_controller->CreateWindow().ok()) {
|
||||
printf("Error creating window: %s\n", SDL_GetError());
|
||||
|
||||
ImGui_ImplSDL2_InitForSDLRenderer(_controller->window(),
|
||||
yaze::core::Renderer::Get().renderer());
|
||||
ImGui_ImplSDLRenderer2_Init(yaze::core::Renderer::Get().renderer());
|
||||
|
||||
if (!LoadPackageFonts().ok()) {
|
||||
abort();
|
||||
}
|
||||
if (!_controller->CreateRenderer().ok()) {
|
||||
printf("Error creating renderer: %s\n", SDL_GetError());
|
||||
abort();
|
||||
}
|
||||
|
||||
// Setup Dear ImGui context
|
||||
IMGUI_CHECKVERSION();
|
||||
ImGui::CreateContext();
|
||||
ImGuiIO &io = ImGui::GetIO();
|
||||
(void)io;
|
||||
io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
|
||||
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
|
||||
|
||||
yaze::app::gui::ColorsYaze();
|
||||
|
||||
ImGui_ImplSDL2_InitForSDLRenderer(_controller->window(), _controller->renderer());
|
||||
ImGui_ImplSDLRenderer2_Init(_controller->renderer());
|
||||
|
||||
if (!_controller->LoadFontFamilies().ok()) {
|
||||
abort();
|
||||
}
|
||||
_controller->SetupScreen(rom_filename);
|
||||
_controller->set_active(true);
|
||||
|
||||
_hoverGestureRecognizer =
|
||||
@@ -136,6 +128,8 @@
|
||||
}
|
||||
|
||||
- (void)drawInMTKView:(MTKView *)view {
|
||||
if (!_controller->active()) return;
|
||||
|
||||
ImGuiIO &io = ImGui::GetIO();
|
||||
io.DisplaySize.x = view.bounds.size.width;
|
||||
io.DisplaySize.y = view.bounds.size.height;
|
||||
@@ -166,8 +160,8 @@
|
||||
if (!controller_status.ok()) {
|
||||
abort();
|
||||
}
|
||||
ImGui::End();
|
||||
}
|
||||
ImGui::End();
|
||||
_controller->DoRender();
|
||||
}
|
||||
|
||||
@@ -243,6 +237,9 @@
|
||||
ImGuiIO &io = ImGui::GetIO();
|
||||
io.AddMouseSourceEvent(ImGuiMouseSource_TouchScreen);
|
||||
io.AddMouseWheelEvent(0.0f, gesture.scale);
|
||||
UIGestureRecognizer *gestureRecognizer = (UIGestureRecognizer *)gesture;
|
||||
io.AddMousePosEvent([gestureRecognizer locationInView:self.view].x,
|
||||
[gestureRecognizer locationInView:self.view].y);
|
||||
}
|
||||
|
||||
- (void)HandleSwipe:(UISwipeGestureRecognizer *)gesture {
|
||||
@@ -253,12 +250,18 @@
|
||||
} else if (gesture.direction == UISwipeGestureRecognizerDirectionLeft) {
|
||||
io.AddMouseWheelEvent(-1.0f, 0.0f); // Swipe Left
|
||||
}
|
||||
UIGestureRecognizer *gestureRecognizer = (UIGestureRecognizer *)gesture;
|
||||
io.AddMousePosEvent([gestureRecognizer locationInView:self.view].x,
|
||||
[gestureRecognizer locationInView:self.view].y);
|
||||
}
|
||||
|
||||
- (void)handleLongPress:(UILongPressGestureRecognizer *)gesture {
|
||||
ImGuiIO &io = ImGui::GetIO();
|
||||
io.AddMouseSourceEvent(ImGuiMouseSource_TouchScreen);
|
||||
io.AddMouseButtonEvent(1, gesture.state == UIGestureRecognizerStateBegan);
|
||||
UIGestureRecognizer *gestureRecognizer = (UIGestureRecognizer *)gesture;
|
||||
io.AddMousePosEvent([gestureRecognizer locationInView:self.view].x,
|
||||
[gestureRecognizer locationInView:self.view].y);
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -348,13 +351,18 @@
|
||||
|
||||
auto data = [NSData dataWithContentsOfURL:selectedFileURL];
|
||||
// Cast NSData* to uint8_t*
|
||||
uchar *bytes = (uchar *)[data bytes];
|
||||
uint8_t *bytes = (uint8_t *)[data bytes];
|
||||
// Size of the data
|
||||
size_t size = [data length];
|
||||
|
||||
PRINT_IF_ERROR(yaze::SharedRom::shared_rom_->LoadFromPointer(bytes, size));
|
||||
std::vector<uint8_t> rom_data;
|
||||
rom_data.resize(size);
|
||||
std::copy(bytes, bytes + size, rom_data.begin());
|
||||
|
||||
// TODO: Re-implmenent this without the SharedRom singleton
|
||||
// PRINT_IF_ERROR(yaze::SharedRom::shared_rom_->LoadFromData(rom_data));
|
||||
std::string filename = std::string([selectedFileURL.path UTF8String]);
|
||||
yaze::SharedRom::shared_rom_->set_filename(filename);
|
||||
// yaze::SharedRom::shared_rom_->set_filename(filename);
|
||||
[selectedFileURL stopAccessingSecurityScopedResource];
|
||||
|
||||
} else {
|
||||
|
||||
@@ -40,8 +40,6 @@
|
||||
E318D9042C59C08300091322 /* font_loader.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D84E2C59C08300091322 /* font_loader.cc */; };
|
||||
E318D9052C59C08300091322 /* font_loader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E318D8502C59C08300091322 /* font_loader.mm */; };
|
||||
E318D9062C59C08300091322 /* font_loader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E318D8502C59C08300091322 /* font_loader.mm */; };
|
||||
E318D9072C59C08300091322 /* common.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8522C59C08300091322 /* common.cc */; };
|
||||
E318D9082C59C08300091322 /* common.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8522C59C08300091322 /* common.cc */; };
|
||||
E318D9092C59C08300091322 /* controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8552C59C08300091322 /* controller.cc */; };
|
||||
E318D90A2C59C08300091322 /* controller.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8552C59C08300091322 /* controller.cc */; };
|
||||
E318D90D2C59C08300091322 /* assembly_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D85C2C59C08300091322 /* assembly_editor.cc */; };
|
||||
@@ -105,8 +103,6 @@
|
||||
E318D95C2C59C08300091322 /* snes_palette.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C02C59C08300091322 /* snes_palette.cc */; };
|
||||
E318D95D2C59C08300091322 /* snes_tile.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C22C59C08300091322 /* snes_tile.cc */; };
|
||||
E318D95E2C59C08300091322 /* snes_tile.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C22C59C08300091322 /* snes_tile.cc */; };
|
||||
E318D95F2C59C08300091322 /* tilesheet.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C42C59C08300091322 /* tilesheet.cc */; };
|
||||
E318D9602C59C08300091322 /* tilesheet.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C42C59C08300091322 /* tilesheet.cc */; };
|
||||
E318D9632C59C08300091322 /* canvas.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C92C59C08300091322 /* canvas.cc */; };
|
||||
E318D9642C59C08300091322 /* canvas.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8C92C59C08300091322 /* canvas.cc */; };
|
||||
E318D9652C59C08300091322 /* color.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8CB2C59C08300091322 /* color.cc */; };
|
||||
@@ -137,8 +133,6 @@
|
||||
E318D9802C59C08300091322 /* sprite.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8EE2C59C08300091322 /* sprite.cc */; };
|
||||
E318D9872C59C08300091322 /* rom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8F62C59C08300091322 /* rom.cc */; };
|
||||
E318D9882C59C08300091322 /* rom.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318D8F62C59C08300091322 /* rom.cc */; };
|
||||
E318D98D2C59CBBB00091322 /* TextEditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318D98B2C59CBBB00091322 /* TextEditor.cpp */; };
|
||||
E318D98E2C59CBBB00091322 /* TextEditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318D98B2C59CBBB00091322 /* TextEditor.cpp */; };
|
||||
E318D9952C59CDF800091322 /* imgui_impl_sdl2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318D9942C59CDF800091322 /* imgui_impl_sdl2.cpp */; };
|
||||
E318D9962C59CDF800091322 /* imgui_impl_sdl2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318D9942C59CDF800091322 /* imgui_impl_sdl2.cpp */; };
|
||||
E318D9992C59D0C400091322 /* imgui_impl_sdlrenderer2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318D9972C59D0C400091322 /* imgui_impl_sdlrenderer2.cpp */; };
|
||||
@@ -657,10 +651,6 @@
|
||||
E318E73A2C5A4FC900091322 /* variant_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318DF1A2C5A4FBD00091322 /* variant_test.cc */; };
|
||||
E318E7402C5A4FCA00091322 /* utility_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318DF202C5A4FBD00091322 /* utility_test.cc */; };
|
||||
E318E7422C5A4FCA00091322 /* abseil.podspec.gen.py in Resources */ = {isa = PBXBuildFile; fileRef = E318DF232C5A4FBD00091322 /* abseil.podspec.gen.py */; };
|
||||
E318E78A2C5A536400091322 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = E318E7762C5A536400091322 /* README.md */; };
|
||||
E318E78D2C5A536400091322 /* ImGuiFileDialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318E77B2C5A536400091322 /* ImGuiFileDialog.cpp */; };
|
||||
E318E78E2C5A536400091322 /* ImGuiFileDialog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E318E77B2C5A536400091322 /* ImGuiFileDialog.cpp */; };
|
||||
E318E7902C5A536400091322 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = E318E77E2C5A536400091322 /* LICENSE */; };
|
||||
E318E7932C5A542700091322 /* distribution_test_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E318DB1F2C5A4FBD00091322 /* distribution_test_util.cc */; };
|
||||
E318E7942C5A542700091322 /* distribution_test_util.h in Sources */ = {isa = PBXBuildFile; fileRef = E318DB202C5A4FBD00091322 /* distribution_test_util.h */; };
|
||||
E318E7AD2C5A548C00091322 /* png.c in Sources */ = {isa = PBXBuildFile; fileRef = E318E7952C5A548C00091322 /* png.c */; };
|
||||
@@ -710,8 +700,6 @@
|
||||
E318E7F22C5A688A00091322 /* Roboto-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E318E7E02C5A688A00091322 /* Roboto-Medium.ttf */; };
|
||||
E318E7F42C5A688A00091322 /* overworld.zeml in Resources */ = {isa = PBXBuildFile; fileRef = E318E7E22C5A688A00091322 /* overworld.zeml */; };
|
||||
E318E7F62C5A688A00091322 /* ow_toolset.zeml in Resources */ = {isa = PBXBuildFile; fileRef = E318E7E32C5A688A00091322 /* ow_toolset.zeml */; };
|
||||
E318E7F92C5A8DE200091322 /* file_path.mm in Sources */ = {isa = PBXBuildFile; fileRef = E318E7F82C5A8DE200091322 /* file_path.mm */; };
|
||||
E318E7FA2C5A8DE200091322 /* file_path.mm in Sources */ = {isa = PBXBuildFile; fileRef = E318E7F82C5A8DE200091322 /* file_path.mm */; };
|
||||
E318E8342C5BD8C100091322 /* UniformTypeIdentifiers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E318E8332C5BD8C000091322 /* UniformTypeIdentifiers.framework */; };
|
||||
E318E86A2C5D74C500091322 /* SDL2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E318E8592C5D74B700091322 /* SDL2.framework */; };
|
||||
E318E86B2C5D74C500091322 /* SDL2.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = E318E8592C5D74B700091322 /* SDL2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
||||
@@ -730,16 +718,26 @@
|
||||
E318E87B2C605D5700091322 /* SDL2.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = E318E8572C5D74B700091322 /* SDL2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
||||
E318E87F2C609B3500091322 /* PencilKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E318E87E2C609B3500091322 /* PencilKit.framework */; };
|
||||
E32BC4CB2CA4D7D9001F57A8 /* command_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = E32BC4CA2CA4D7BC001F57A8 /* command_manager.cc */; };
|
||||
E346FD782E82E3D60044283C /* tile16_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E346FD772E82E3D60044283C /* tile16_editor.cc */; };
|
||||
E346FD792E82E3D60044283C /* tile16_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E346FD772E82E3D60044283C /* tile16_editor.cc */; };
|
||||
E34C789C2C5882A100A6C275 /* imgui_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5079822D257677DB0038A28D /* imgui_tables.cpp */; };
|
||||
E36971DA2CE189EA00DEF2F6 /* project.cc in Sources */ = {isa = PBXBuildFile; fileRef = E36971D92CE189EA00DEF2F6 /* project.cc */; };
|
||||
E36971DB2CE189EA00DEF2F6 /* project.cc in Sources */ = {isa = PBXBuildFile; fileRef = E36971D92CE189EA00DEF2F6 /* project.cc */; };
|
||||
E36971E42CE18A2A00DEF2F6 /* file_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E36971E12CE18A2A00DEF2F6 /* file_util.cc */; };
|
||||
E36971E52CE18A2A00DEF2F6 /* file_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = E36971E12CE18A2A00DEF2F6 /* file_util.cc */; };
|
||||
E37323B62D6A0BC800059101 /* text_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323B52D6A0BC800059101 /* text_editor.cc */; };
|
||||
E37323B82D6A0BE800059101 /* file_dialog.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323B72D6A0BE800059101 /* file_dialog.cc */; };
|
||||
E37323B92D6A0BE800059101 /* file_dialog.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323B72D6A0BE800059101 /* file_dialog.cc */; };
|
||||
E37323C42D6A0C1E00059101 /* bps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BB2D6A0C1E00059101 /* bps.cc */; };
|
||||
E37323C52D6A0C1E00059101 /* flag.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BD2D6A0C1E00059101 /* flag.cc */; };
|
||||
E37323C62D6A0C1E00059101 /* hex.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BF2D6A0C1E00059101 /* hex.cc */; };
|
||||
E37323C72D6A0C1E00059101 /* bps.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BB2D6A0C1E00059101 /* bps.cc */; };
|
||||
E37323C82D6A0C1E00059101 /* flag.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BD2D6A0C1E00059101 /* flag.cc */; };
|
||||
E37323C92D6A0C1E00059101 /* hex.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323BF2D6A0C1E00059101 /* hex.cc */; };
|
||||
E37323CC2D6A0C4800059101 /* hyrule_magic.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323CB2D6A0C4800059101 /* hyrule_magic.cc */; };
|
||||
E37323CD2D6A0C4800059101 /* hyrule_magic.cc in Sources */ = {isa = PBXBuildFile; fileRef = E37323CB2D6A0C4800059101 /* hyrule_magic.cc */; };
|
||||
E384E2D62C76C6E800147029 /* message_data.cc in Sources */ = {isa = PBXBuildFile; fileRef = E384E2D52C76C6C800147029 /* message_data.cc */; };
|
||||
E38A97F72C6C4CE3005FB662 /* extension_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = E38A97F22C6C4CE3005FB662 /* extension_manager.cc */; };
|
||||
E38A97F82C6C4CE3005FB662 /* settings_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E38A97F42C6C4CE3005FB662 /* settings_editor.cc */; };
|
||||
E3A5CEE52CF61F1200259DE8 /* main.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3A5CEE32CF61F1200259DE8 /* main.cc */; };
|
||||
E3A5CEE72CF61F2300259DE8 /* editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3A5CEE62CF61F2300259DE8 /* editor.cc */; };
|
||||
E3B864952C8214B500122951 /* asset_browser.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3B864902C82144A00122951 /* asset_browser.cc */; };
|
||||
E3BE958D2C68379B008DD1E7 /* editor_manager.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3BE958B2C68379B008DD1E7 /* editor_manager.cc */; };
|
||||
E3BE95902C6837C8008DD1E7 /* overworld_editor.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3BE958F2C6837C8008DD1E7 /* overworld_editor.cc */; };
|
||||
@@ -885,9 +883,6 @@
|
||||
E318D84E2C59C08300091322 /* font_loader.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = font_loader.cc; sourceTree = "<group>"; };
|
||||
E318D84F2C59C08300091322 /* font_loader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = font_loader.h; sourceTree = "<group>"; };
|
||||
E318D8502C59C08300091322 /* font_loader.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = font_loader.mm; sourceTree = "<group>"; };
|
||||
E318D8522C59C08300091322 /* common.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = common.cc; sourceTree = "<group>"; };
|
||||
E318D8532C59C08300091322 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = "<group>"; };
|
||||
E318D8542C59C08300091322 /* constants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = constants.h; sourceTree = "<group>"; };
|
||||
E318D8552C59C08300091322 /* controller.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = controller.cc; sourceTree = "<group>"; };
|
||||
E318D8562C59C08300091322 /* controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = controller.h; sourceTree = "<group>"; };
|
||||
E318D8592C59C08300091322 /* project.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = project.h; sourceTree = "<group>"; };
|
||||
@@ -932,9 +927,6 @@
|
||||
E318D89E2C59C08300091322 /* clock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = clock.h; sourceTree = "<group>"; };
|
||||
E318D89F2C59C08300091322 /* cpu.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cpu.cc; sourceTree = "<group>"; };
|
||||
E318D8A02C59C08300091322 /* cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cpu.h; sourceTree = "<group>"; };
|
||||
E318D8A22C59C08300091322 /* asm_parser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asm_parser.h; sourceTree = "<group>"; };
|
||||
E318D8A32C59C08300091322 /* debugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = debugger.h; sourceTree = "<group>"; };
|
||||
E318D8A52C59C08300091322 /* log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = log.h; sourceTree = "<group>"; };
|
||||
E318D8A72C59C08300091322 /* dma_channel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dma_channel.h; sourceTree = "<group>"; };
|
||||
E318D8A82C59C08300091322 /* dma.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dma.cc; sourceTree = "<group>"; };
|
||||
E318D8A92C59C08300091322 /* dma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dma.h; sourceTree = "<group>"; };
|
||||
@@ -960,8 +952,6 @@
|
||||
E318D8C12C59C08300091322 /* snes_palette.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = snes_palette.h; sourceTree = "<group>"; };
|
||||
E318D8C22C59C08300091322 /* snes_tile.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = snes_tile.cc; sourceTree = "<group>"; };
|
||||
E318D8C32C59C08300091322 /* snes_tile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = snes_tile.h; sourceTree = "<group>"; };
|
||||
E318D8C42C59C08300091322 /* tilesheet.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tilesheet.cc; sourceTree = "<group>"; };
|
||||
E318D8C52C59C08300091322 /* tilesheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tilesheet.h; sourceTree = "<group>"; };
|
||||
E318D8C92C59C08300091322 /* canvas.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = canvas.cc; sourceTree = "<group>"; };
|
||||
E318D8CA2C59C08300091322 /* canvas.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = canvas.h; sourceTree = "<group>"; };
|
||||
E318D8CB2C59C08300091322 /* color.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = color.cc; sourceTree = "<group>"; };
|
||||
@@ -999,8 +989,6 @@
|
||||
E318D8F22C59C08300091322 /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = "<group>"; };
|
||||
E318D8F62C59C08300091322 /* rom.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = rom.cc; sourceTree = "<group>"; };
|
||||
E318D8F72C59C08300091322 /* rom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rom.h; sourceTree = "<group>"; };
|
||||
E318D98B2C59CBBB00091322 /* TextEditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TextEditor.cpp; path = ../../yaze/src/lib/ImGuiColorTextEdit/TextEditor.cpp; sourceTree = "<group>"; };
|
||||
E318D98C2C59CBBB00091322 /* TextEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextEditor.h; path = ../../yaze/src/lib/ImGuiColorTextEdit/TextEditor.h; sourceTree = "<group>"; };
|
||||
E318D9942C59CDF800091322 /* imgui_impl_sdl2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imgui_impl_sdl2.cpp; path = ../../yaze/src/lib/imgui/backends/imgui_impl_sdl2.cpp; sourceTree = "<group>"; };
|
||||
E318D9972C59D0C400091322 /* imgui_impl_sdlrenderer2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imgui_impl_sdlrenderer2.cpp; path = ../../yaze/src/lib/imgui/backends/imgui_impl_sdlrenderer2.cpp; sourceTree = "<group>"; };
|
||||
E318D99B2C59D0E500091322 /* imgui_stdlib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imgui_stdlib.cpp; path = ../../yaze/src/lib/imgui/misc/cpp/imgui_stdlib.cpp; sourceTree = "<group>"; };
|
||||
@@ -2336,20 +2324,6 @@
|
||||
E318DF232C5A4FBD00091322 /* abseil.podspec.gen.py */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.python; path = abseil.podspec.gen.py; sourceTree = "<group>"; };
|
||||
E318DF242C5A4FBD00091322 /* BUILD.bazel */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BUILD.bazel; sourceTree = "<group>"; };
|
||||
E318DF252C5A4FBD00091322 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
|
||||
E318E7702C5A536400091322 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = "<group>"; };
|
||||
E318E7712C5A536400091322 /* dirent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dirent.h; sourceTree = "<group>"; };
|
||||
E318E7722C5A536400091322 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
|
||||
E318E7732C5A536400091322 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
||||
E318E7752C5A536400091322 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
|
||||
E318E7762C5A536400091322 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
||||
E318E7772C5A536400091322 /* stb_image_resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stb_image_resize.h; sourceTree = "<group>"; };
|
||||
E318E7782C5A536400091322 /* stb_image.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stb_image.h; sourceTree = "<group>"; };
|
||||
E318E77A2C5A536400091322 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = "<group>"; };
|
||||
E318E77B2C5A536400091322 /* ImGuiFileDialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ImGuiFileDialog.cpp; sourceTree = "<group>"; };
|
||||
E318E77C2C5A536400091322 /* ImGuiFileDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImGuiFileDialog.h; sourceTree = "<group>"; };
|
||||
E318E77D2C5A536400091322 /* ImGuiFileDialogConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImGuiFileDialogConfig.h; sourceTree = "<group>"; };
|
||||
E318E77E2C5A536400091322 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
|
||||
E318E77F2C5A536400091322 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
||||
E318E7952C5A548C00091322 /* png.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = png.c; sourceTree = "<group>"; };
|
||||
E318E7962C5A548C00091322 /* png.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = png.h; sourceTree = "<group>"; };
|
||||
E318E7972C5A548C00091322 /* pngconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pngconf.h; sourceTree = "<group>"; };
|
||||
@@ -2386,8 +2360,6 @@
|
||||
E318E7E02C5A688A00091322 /* Roboto-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Medium.ttf"; sourceTree = "<group>"; };
|
||||
E318E7E22C5A688A00091322 /* overworld.zeml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = overworld.zeml; sourceTree = "<group>"; };
|
||||
E318E7E32C5A688A00091322 /* ow_toolset.zeml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ow_toolset.zeml; sourceTree = "<group>"; };
|
||||
E318E7F72C5A8DE200091322 /* file_path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = file_path.h; sourceTree = "<group>"; };
|
||||
E318E7F82C5A8DE200091322 /* file_path.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = file_path.mm; sourceTree = "<group>"; };
|
||||
E318E8092C5B24CD00091322 /* ow_toolset.zeml */ = {isa = PBXFileReference; lastKnownFileType = text; path = ow_toolset.zeml; sourceTree = "<group>"; };
|
||||
E318E80A2C5B24CD00091322 /* overworld.zeml */ = {isa = PBXFileReference; lastKnownFileType = text; path = overworld.zeml; sourceTree = "<group>"; };
|
||||
E318E80C2C5B24CD00091322 /* Cousine-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Cousine-Regular.ttf"; sourceTree = "<group>"; };
|
||||
@@ -2403,12 +2375,24 @@
|
||||
E318E8782C5D958400091322 /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
|
||||
E318E87E2C609B3500091322 /* PencilKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PencilKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.5.sdk/System/Library/Frameworks/PencilKit.framework; sourceTree = DEVELOPER_DIR; };
|
||||
E32BC4CA2CA4D7BC001F57A8 /* command_manager.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = command_manager.cc; sourceTree = "<group>"; };
|
||||
E346FD762E82E3D60044283C /* tile16_editor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = tile16_editor.h; sourceTree = "<group>"; };
|
||||
E346FD772E82E3D60044283C /* tile16_editor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = tile16_editor.cc; sourceTree = "<group>"; };
|
||||
E36971D92CE189EA00DEF2F6 /* project.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = project.cc; sourceTree = "<group>"; };
|
||||
E36971E02CE18A2A00DEF2F6 /* file_util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = file_util.h; sourceTree = "<group>"; };
|
||||
E36971E12CE18A2A00DEF2F6 /* file_util.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = file_util.cc; sourceTree = "<group>"; };
|
||||
E36971E22CE18A2A00DEF2F6 /* sdl_deleter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sdl_deleter.h; sourceTree = "<group>"; };
|
||||
E37323B42D6A0BC800059101 /* text_editor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = text_editor.h; sourceTree = "<group>"; };
|
||||
E37323B52D6A0BC800059101 /* text_editor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = text_editor.cc; sourceTree = "<group>"; };
|
||||
E37323B72D6A0BE800059101 /* file_dialog.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = file_dialog.cc; sourceTree = "<group>"; };
|
||||
E37323BA2D6A0C1E00059101 /* bps.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bps.h; sourceTree = "<group>"; };
|
||||
E37323BB2D6A0C1E00059101 /* bps.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = bps.cc; sourceTree = "<group>"; };
|
||||
E37323BC2D6A0C1E00059101 /* flag.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = flag.h; sourceTree = "<group>"; };
|
||||
E37323BD2D6A0C1E00059101 /* flag.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = flag.cc; sourceTree = "<group>"; };
|
||||
E37323BE2D6A0C1E00059101 /* hex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hex.h; sourceTree = "<group>"; };
|
||||
E37323BF2D6A0C1E00059101 /* hex.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = hex.cc; sourceTree = "<group>"; };
|
||||
E37323C02D6A0C1E00059101 /* log.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = log.h; sourceTree = "<group>"; };
|
||||
E37323C12D6A0C1E00059101 /* macro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = macro.h; sourceTree = "<group>"; };
|
||||
E37323C22D6A0C1E00059101 /* notify.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = notify.h; sourceTree = "<group>"; };
|
||||
E37323CA2D6A0C4800059101 /* hyrule_magic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hyrule_magic.h; sourceTree = "<group>"; };
|
||||
E37323CB2D6A0C4800059101 /* hyrule_magic.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = hyrule_magic.cc; sourceTree = "<group>"; };
|
||||
E384E2D52C76C6C800147029 /* message_data.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = message_data.cc; sourceTree = "<group>"; };
|
||||
E38985002C67082800D4CF13 /* renderer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = renderer.h; sourceTree = "<group>"; };
|
||||
E38985012C67CDDB00D4CF13 /* view_controller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = view_controller.h; sourceTree = "<group>"; };
|
||||
E38A97F12C6C4CE3005FB662 /* command_manager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = command_manager.h; sourceTree = "<group>"; };
|
||||
E38A97F22C6C4CE3005FB662 /* extension_manager.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extension_manager.cc; sourceTree = "<group>"; };
|
||||
@@ -2416,7 +2400,6 @@
|
||||
E38A97F42C6C4CE3005FB662 /* settings_editor.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = settings_editor.cc; sourceTree = "<group>"; };
|
||||
E38A97F52C6C4CE3005FB662 /* settings_editor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = settings_editor.h; sourceTree = "<group>"; };
|
||||
E3A5CEE32CF61F1200259DE8 /* main.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cc; sourceTree = "<group>"; };
|
||||
E3A5CEE62CF61F2300259DE8 /* editor.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = editor.cc; sourceTree = "<group>"; };
|
||||
E3A5CEE82CF61F3100259DE8 /* editor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = editor.h; sourceTree = "<group>"; };
|
||||
E3B8648F2C82144A00122951 /* asset_browser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = asset_browser.h; sourceTree = "<group>"; };
|
||||
E3B864902C82144A00122951 /* asset_browser.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = asset_browser.cc; sourceTree = "<group>"; };
|
||||
@@ -2463,6 +2446,7 @@
|
||||
E318E7AC2C5A548C00091322 /* png */,
|
||||
E318DF262C5A4FBD00091322 /* absl */,
|
||||
E318D8FA2C59C08300091322 /* app */,
|
||||
E37323C32D6A0C1E00059101 /* util */,
|
||||
83BBE9F020EB544400295997 /* imgui */,
|
||||
8309BD9E253CCBA70045E2A1 /* yaze-ios */,
|
||||
8307E7C520E9F9C900473790 /* Products */,
|
||||
@@ -2530,13 +2514,10 @@
|
||||
83BBE9F020EB544400295997 /* imgui */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E318E7802C5A536400091322 /* ImGuiFileDialog */,
|
||||
E318D99B2C59D0E500091322 /* imgui_stdlib.cpp */,
|
||||
E318D99C2C59D0E500091322 /* imgui_stdlib.h */,
|
||||
E318D9972C59D0C400091322 /* imgui_impl_sdlrenderer2.cpp */,
|
||||
E318D9942C59CDF800091322 /* imgui_impl_sdl2.cpp */,
|
||||
E318D98B2C59CBBB00091322 /* TextEditor.cpp */,
|
||||
E318D98C2C59CBBB00091322 /* TextEditor.h */,
|
||||
5079822D257677DB0038A28D /* imgui_tables.cpp */,
|
||||
8309BDB5253CCC9D0045E2A1 /* imgui_impl_metal.mm */,
|
||||
83BBEA0420EB54E700295997 /* imconfig.h */,
|
||||
@@ -2553,10 +2534,8 @@
|
||||
E318D8512C59C08300091322 /* platform */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E37323B72D6A0BE800059101 /* file_dialog.cc */,
|
||||
E38985012C67CDDB00D4CF13 /* view_controller.h */,
|
||||
E38985002C67082800D4CF13 /* renderer.h */,
|
||||
E318E7F72C5A8DE200091322 /* file_path.h */,
|
||||
E318E7F82C5A8DE200091322 /* file_path.mm */,
|
||||
E318D8472C59C08300091322 /* app_delegate.h */,
|
||||
E318D8482C59C08300091322 /* app_delegate.mm */,
|
||||
E318D8492C59C08300091322 /* clipboard.cc */,
|
||||
@@ -2574,11 +2553,7 @@
|
||||
E318D85B2C59C08300091322 /* core */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E36971E32CE18A2A00DEF2F6 /* utils */,
|
||||
E318D8512C59C08300091322 /* platform */,
|
||||
E318D8522C59C08300091322 /* common.cc */,
|
||||
E318D8532C59C08300091322 /* common.h */,
|
||||
E318D8542C59C08300091322 /* constants.h */,
|
||||
E318D8552C59C08300091322 /* controller.cc */,
|
||||
E318D8562C59C08300091322 /* controller.h */,
|
||||
E36971D92CE189EA00DEF2F6 /* project.cc */,
|
||||
@@ -2646,6 +2621,8 @@
|
||||
E318D8792C59C08300091322 /* overworld */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E346FD762E82E3D60044283C /* tile16_editor.h */,
|
||||
E346FD772E82E3D60044283C /* tile16_editor.cc */,
|
||||
E3BE958F2C6837C8008DD1E7 /* overworld_editor.cc */,
|
||||
E3BE958E2C6837C8008DD1E7 /* overworld_editor.h */,
|
||||
E318D8762C59C08300091322 /* entity.cc */,
|
||||
@@ -2677,7 +2654,6 @@
|
||||
E38A97F62C6C4CE3005FB662 /* system */,
|
||||
E3BE958B2C68379B008DD1E7 /* editor_manager.cc */,
|
||||
E3BE958C2C68379B008DD1E7 /* editor_manager.h */,
|
||||
E3A5CEE62CF61F2300259DE8 /* editor.cc */,
|
||||
E3A5CEE82CF61F3100259DE8 /* editor.h */,
|
||||
);
|
||||
path = editor;
|
||||
@@ -2729,16 +2705,6 @@
|
||||
path = cpu;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318D8A62C59C08300091322 /* debug */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E318D8A22C59C08300091322 /* asm_parser.h */,
|
||||
E318D8A32C59C08300091322 /* debugger.h */,
|
||||
E318D8A52C59C08300091322 /* log.h */,
|
||||
);
|
||||
path = debug;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318D8AD2C59C08300091322 /* memory */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
@@ -2767,7 +2733,6 @@
|
||||
children = (
|
||||
E318D8982C59C08300091322 /* audio */,
|
||||
E318D8A12C59C08300091322 /* cpu */,
|
||||
E318D8A62C59C08300091322 /* debug */,
|
||||
E318D8AD2C59C08300091322 /* memory */,
|
||||
E318D8B12C59C08300091322 /* video */,
|
||||
E318D8B32C59C08300091322 /* emulator.cc */,
|
||||
@@ -2793,8 +2758,6 @@
|
||||
E318D8C12C59C08300091322 /* snes_palette.h */,
|
||||
E318D8C22C59C08300091322 /* snes_tile.cc */,
|
||||
E318D8C32C59C08300091322 /* snes_tile.h */,
|
||||
E318D8C42C59C08300091322 /* tilesheet.cc */,
|
||||
E318D8C52C59C08300091322 /* tilesheet.h */,
|
||||
);
|
||||
path = gfx;
|
||||
sourceTree = "<group>";
|
||||
@@ -2885,6 +2848,8 @@
|
||||
E318D8ED2C59C08300091322 /* screen */,
|
||||
E318D8F02C59C08300091322 /* sprite */,
|
||||
E318D8F22C59C08300091322 /* common.h */,
|
||||
E37323CB2D6A0C4800059101 /* hyrule_magic.cc */,
|
||||
E37323CA2D6A0C4800059101 /* hyrule_magic.h */,
|
||||
);
|
||||
path = zelda3;
|
||||
sourceTree = "<group>";
|
||||
@@ -4900,44 +4865,6 @@
|
||||
path = "../lib/abseil-cpp/absl";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318E7742C5A536400091322 /* dirent */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E318E7702C5A536400091322 /* ChangeLog */,
|
||||
E318E7712C5A536400091322 /* dirent.h */,
|
||||
E318E7722C5A536400091322 /* LICENSE */,
|
||||
E318E7732C5A536400091322 /* README.md */,
|
||||
);
|
||||
path = dirent;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318E7792C5A536400091322 /* stb */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E318E7752C5A536400091322 /* LICENSE */,
|
||||
E318E7762C5A536400091322 /* README.md */,
|
||||
E318E7772C5A536400091322 /* stb_image_resize.h */,
|
||||
E318E7782C5A536400091322 /* stb_image.h */,
|
||||
);
|
||||
path = stb;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318E7802C5A536400091322 /* ImGuiFileDialog */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E318E7742C5A536400091322 /* dirent */,
|
||||
E318E7792C5A536400091322 /* stb */,
|
||||
E318E77A2C5A536400091322 /* CMakeLists.txt */,
|
||||
E318E77B2C5A536400091322 /* ImGuiFileDialog.cpp */,
|
||||
E318E77C2C5A536400091322 /* ImGuiFileDialog.h */,
|
||||
E318E77D2C5A536400091322 /* ImGuiFileDialogConfig.h */,
|
||||
E318E77E2C5A536400091322 /* LICENSE */,
|
||||
E318E77F2C5A536400091322 /* README.md */,
|
||||
);
|
||||
name = ImGuiFileDialog;
|
||||
path = ../../yaze/src/lib/ImGuiFileDialog;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E318E7AC2C5A548C00091322 /* png */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
@@ -5058,15 +4985,22 @@
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E36971E32CE18A2A00DEF2F6 /* utils */ = {
|
||||
E37323C32D6A0C1E00059101 /* util */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E36971E02CE18A2A00DEF2F6 /* file_util.h */,
|
||||
E36971E12CE18A2A00DEF2F6 /* file_util.cc */,
|
||||
E36971E22CE18A2A00DEF2F6 /* sdl_deleter.h */,
|
||||
E37323BA2D6A0C1E00059101 /* bps.h */,
|
||||
E37323BB2D6A0C1E00059101 /* bps.cc */,
|
||||
E37323BC2D6A0C1E00059101 /* flag.h */,
|
||||
E37323BD2D6A0C1E00059101 /* flag.cc */,
|
||||
E37323BE2D6A0C1E00059101 /* hex.h */,
|
||||
E37323BF2D6A0C1E00059101 /* hex.cc */,
|
||||
E37323C02D6A0C1E00059101 /* log.h */,
|
||||
E37323C12D6A0C1E00059101 /* macro.h */,
|
||||
E37323C22D6A0C1E00059101 /* notify.h */,
|
||||
);
|
||||
path = utils;
|
||||
sourceTree = "<group>";
|
||||
name = util;
|
||||
path = ../util;
|
||||
sourceTree = SOURCE_ROOT;
|
||||
};
|
||||
E38A97F62C6C4CE3005FB662 /* system */ = {
|
||||
isa = PBXGroup;
|
||||
@@ -5084,6 +5018,8 @@
|
||||
E3B864942C82146700122951 /* modules */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
E37323B42D6A0BC800059101 /* text_editor.h */,
|
||||
E37323B52D6A0BC800059101 /* text_editor.cc */,
|
||||
E3B864902C82144A00122951 /* asset_browser.cc */,
|
||||
E3B8648F2C82144A00122951 /* asset_browser.h */,
|
||||
);
|
||||
@@ -5136,7 +5072,7 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = YES;
|
||||
LastUpgradeCheck = 1540;
|
||||
LastUpgradeCheck = 2600;
|
||||
ORGANIZATIONNAME = "Warren Moore";
|
||||
TargetAttributes = {
|
||||
8307E7C320E9F9C900473790 = {
|
||||
@@ -5285,10 +5221,8 @@
|
||||
E318E7422C5A4FCA00091322 /* abseil.podspec.gen.py in Resources */,
|
||||
E318E7EE2C5A688A00091322 /* MaterialIcons-Regular.ttf in Resources */,
|
||||
E318E7F22C5A688A00091322 /* Roboto-Medium.ttf in Resources */,
|
||||
E318E78A2C5A536400091322 /* README.md in Resources */,
|
||||
E318E7EC2C5A688A00091322 /* Karla-Regular.ttf in Resources */,
|
||||
E318E7F42C5A688A00091322 /* overworld.zeml in Resources */,
|
||||
E318E7902C5A536400091322 /* LICENSE in Resources */,
|
||||
E318E7F62C5A688A00091322 /* ow_toolset.zeml in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
@@ -5326,10 +5260,8 @@
|
||||
E318D93D2C59C08300091322 /* addressing.cc in Sources */,
|
||||
E318E0312C5A4FBF00091322 /* flag.cc in Sources */,
|
||||
E318DF6B2C5A4FBE00091322 /* throw_delegate.cc in Sources */,
|
||||
E318D95F2C59C08300091322 /* tilesheet.cc in Sources */,
|
||||
E318D9652C59C08300091322 /* color.cc in Sources */,
|
||||
E318E0F32C5A4FC000091322 /* seed_material.cc in Sources */,
|
||||
E318D98D2C59CBBB00091322 /* TextEditor.cpp in Sources */,
|
||||
E318D9992C59D0C400091322 /* imgui_impl_sdlrenderer2.cpp in Sources */,
|
||||
E318E00B2C5A4FBF00091322 /* vdso_support.cc in Sources */,
|
||||
E318E7B12C5A548C00091322 /* pngget.c in Sources */,
|
||||
@@ -5361,6 +5293,7 @@
|
||||
E318E1332C5A4FC100091322 /* status.cc in Sources */,
|
||||
E318E1652C5A4FC100091322 /* cord_rep_btree_navigator.cc in Sources */,
|
||||
E318E1472C5A4FC100091322 /* extension.cc in Sources */,
|
||||
E37323CC2D6A0C4800059101 /* hyrule_magic.cc in Sources */,
|
||||
E318DF572C5A4FBE00091322 /* spinlock_win32.inc in Sources */,
|
||||
E318D9772C59C08300091322 /* overworld_map.cc in Sources */,
|
||||
E318E7B52C5A548C00091322 /* pngpread.c in Sources */,
|
||||
@@ -5388,6 +5321,9 @@
|
||||
E318D9192C59C08300091322 /* tile16_editor.cc in Sources */,
|
||||
83BBEA0720EB54E700295997 /* imgui_demo.cpp in Sources */,
|
||||
E318E1992C5A4FC200091322 /* ostringstream.cc in Sources */,
|
||||
E37323C72D6A0C1E00059101 /* bps.cc in Sources */,
|
||||
E37323C82D6A0C1E00059101 /* flag.cc in Sources */,
|
||||
E37323C92D6A0C1E00059101 /* hex.cc in Sources */,
|
||||
E318E2072C5A4FC200091322 /* waiter.cc in Sources */,
|
||||
E318E09F2C5A4FC000091322 /* int128_have_intrinsic.inc in Sources */,
|
||||
E318DF5F2C5A4FBE00091322 /* strerror.cc in Sources */,
|
||||
@@ -5399,6 +5335,7 @@
|
||||
E318E7C92C5A548C00091322 /* pngwtran.c in Sources */,
|
||||
E318E17D2C5A4FC100091322 /* cordz_handle.cc in Sources */,
|
||||
E318E1CB2C5A4FC200091322 /* escaping.cc in Sources */,
|
||||
E37323B62D6A0BC800059101 /* text_editor.cc in Sources */,
|
||||
E318E1232C5A4FC100091322 /* seed_sequences.cc in Sources */,
|
||||
E318DFEB2C5A4FBF00091322 /* address_is_readable.cc in Sources */,
|
||||
E318E1FB2C5A4FC200091322 /* create_thread_identity.cc in Sources */,
|
||||
@@ -5424,7 +5361,6 @@
|
||||
E318E2292C5A4FC200091322 /* time_zone_fixed.cc in Sources */,
|
||||
E318E12F2C5A4FC100091322 /* status_payload_printer.cc in Sources */,
|
||||
E36971DB2CE189EA00DEF2F6 /* project.cc in Sources */,
|
||||
E318E78D2C5A536400091322 /* ImGuiFileDialog.cpp in Sources */,
|
||||
E318E1792C5A4FC100091322 /* cordz_functions.cc in Sources */,
|
||||
E318E0212C5A4FBF00091322 /* symbolize_elf.inc in Sources */,
|
||||
E318D94B2C59C08300091322 /* ppu.cc in Sources */,
|
||||
@@ -5435,7 +5371,6 @@
|
||||
E318E1B72C5A4FC200091322 /* cord_analysis.cc in Sources */,
|
||||
E318D8FD2C59C08300091322 /* clipboard.cc in Sources */,
|
||||
E3BE958D2C68379B008DD1E7 /* editor_manager.cc in Sources */,
|
||||
E318D9072C59C08300091322 /* common.cc in Sources */,
|
||||
E318D96D2C59C08300091322 /* object_renderer.cc in Sources */,
|
||||
E318DFFD2C5A4FBF00091322 /* stacktrace_emscripten-inl.inc in Sources */,
|
||||
E318E0072C5A4FBF00091322 /* stacktrace_win32-inl.inc in Sources */,
|
||||
@@ -5476,12 +5411,11 @@
|
||||
E318E1732C5A4FC100091322 /* cord_rep_crc.cc in Sources */,
|
||||
E318E2332C5A4FC300091322 /* time_zone_info.cc in Sources */,
|
||||
E318E16F2C5A4FC100091322 /* cord_rep_consume.cc in Sources */,
|
||||
E36971E52CE18A2A00DEF2F6 /* file_util.cc in Sources */,
|
||||
E318E1CF2C5A4FC200091322 /* match.cc in Sources */,
|
||||
E318E02F2C5A4FBF00091322 /* flag_msvc.inc in Sources */,
|
||||
E318DFFF2C5A4FBF00091322 /* stacktrace_generic-inl.inc in Sources */,
|
||||
E37323B92D6A0BE800059101 /* file_dialog.cc in Sources */,
|
||||
E318E1AB2C5A4FC200091322 /* ascii.cc in Sources */,
|
||||
E318E7F92C5A8DE200091322 /* file_path.mm in Sources */,
|
||||
E318E0E92C5A4FC000091322 /* randen_slow.cc in Sources */,
|
||||
E318D9472C59C08300091322 /* dma.cc in Sources */,
|
||||
E318E02B2C5A4FBF00091322 /* symbolize.cc in Sources */,
|
||||
@@ -5515,6 +5449,7 @@
|
||||
E318E0392C5A4FBF00091322 /* program_name.cc in Sources */,
|
||||
E318E0572C5A4FBF00091322 /* marshalling.cc in Sources */,
|
||||
E318E7D72C5A55C300091322 /* arm_init.c in Sources */,
|
||||
E346FD782E82E3D60044283C /* tile16_editor.cc in Sources */,
|
||||
E318E21D2C5A4FC200091322 /* mutex.cc in Sources */,
|
||||
E318E7B72C5A548C00091322 /* pngread.c in Sources */,
|
||||
E318D91D2C59C08300091322 /* message_editor.cc in Sources */,
|
||||
@@ -5535,7 +5470,6 @@
|
||||
E318D9672C59C08300091322 /* input.cc in Sources */,
|
||||
8309BDA5253CCC070045E2A1 /* main.mm in Sources */,
|
||||
E318E6F32C5A4FC900091322 /* get_current_time_posix.inc in Sources */,
|
||||
E3A5CEE72CF61F2300259DE8 /* editor.cc in Sources */,
|
||||
E318E71B2C5A4FC900091322 /* time.cc in Sources */,
|
||||
E318D9172C59C08300091322 /* screen_editor.cc in Sources */,
|
||||
E318E0652C5A4FBF00091322 /* usage.cc in Sources */,
|
||||
@@ -5577,6 +5511,7 @@
|
||||
E318E04C2C5A4FBF00091322 /* flag_benchmark.cc in Sources */,
|
||||
E318E1A62C5A4FC200091322 /* utf8.cc in Sources */,
|
||||
E318D94A2C59C08300091322 /* memory.cc in Sources */,
|
||||
E37323B82D6A0BE800059101 /* file_dialog.cc in Sources */,
|
||||
E318DF462C5A4FBE00091322 /* prefetch_test.cc in Sources */,
|
||||
E318E0722C5A4FC000091322 /* function_type_benchmark.cc in Sources */,
|
||||
E318E03E2C5A4FBF00091322 /* usage_test.cc in Sources */,
|
||||
@@ -5610,7 +5545,6 @@
|
||||
E318DFF82C5A4FBF00091322 /* stack_consumption.cc in Sources */,
|
||||
E318DF622C5A4FBE00091322 /* sysinfo_test.cc in Sources */,
|
||||
E318E19A2C5A4FC200091322 /* ostringstream.cc in Sources */,
|
||||
E318D98E2C59CBBB00091322 /* TextEditor.cpp in Sources */,
|
||||
E318D9522C59C08300091322 /* snes.cc in Sources */,
|
||||
E318E0EC2C5A4FC000091322 /* randen_test.cc in Sources */,
|
||||
E318E7C82C5A548C00091322 /* pngwrite.c in Sources */,
|
||||
@@ -5640,7 +5574,6 @@
|
||||
E318DF4A2C5A4FBE00091322 /* scoped_set_env_test.cc in Sources */,
|
||||
E318E1682C5A4FC100091322 /* cord_rep_btree_reader_test.cc in Sources */,
|
||||
E318E0C02C5A4FC000091322 /* distribution_test_util_test.cc in Sources */,
|
||||
E318E7FA2C5A8DE200091322 /* file_path.mm in Sources */,
|
||||
E318DF942C5A4FBE00091322 /* cleanup_test.cc in Sources */,
|
||||
E318D95C2C59C08300091322 /* snes_palette.cc in Sources */,
|
||||
E318DFD82C5A4FBF00091322 /* inlined_vector_test.cc in Sources */,
|
||||
@@ -5731,6 +5664,7 @@
|
||||
E318E2242C5A4FC200091322 /* cctz_benchmark.cc in Sources */,
|
||||
E318E0362C5A4FBF00091322 /* private_handle_accessor.cc in Sources */,
|
||||
E318D9202C59C08300091322 /* music_editor.cc in Sources */,
|
||||
E346FD792E82E3D60044283C /* tile16_editor.cc in Sources */,
|
||||
E318D97A2C59C08300091322 /* overworld.cc in Sources */,
|
||||
E318E1F62C5A4FC200091322 /* strip_test.cc in Sources */,
|
||||
E318E0A82C5A4FC000091322 /* int128.cc in Sources */,
|
||||
@@ -5860,6 +5794,9 @@
|
||||
E34C789C2C5882A100A6C275 /* imgui_tables.cpp in Sources */,
|
||||
E318E0E82C5A4FC000091322 /* randen_slow_test.cc in Sources */,
|
||||
E318E08E2C5A4FC000091322 /* memory_test.cc in Sources */,
|
||||
E37323C42D6A0C1E00059101 /* bps.cc in Sources */,
|
||||
E37323C52D6A0C1E00059101 /* flag.cc in Sources */,
|
||||
E37323C62D6A0C1E00059101 /* hex.cc in Sources */,
|
||||
E318E0F22C5A4FC000091322 /* seed_material_test.cc in Sources */,
|
||||
E318E1F82C5A4FC200091322 /* substitute_test.cc in Sources */,
|
||||
E318D9662C59C08300091322 /* color.cc in Sources */,
|
||||
@@ -5870,7 +5807,6 @@
|
||||
E318E1422C5A4FC100091322 /* checker_test.cc in Sources */,
|
||||
E318E1B22C5A4FC200091322 /* charconv_test.cc in Sources */,
|
||||
E318E1BC2C5A4FC200091322 /* cord_buffer.cc in Sources */,
|
||||
E318D9082C59C08300091322 /* common.cc in Sources */,
|
||||
E318E1DE2C5A4FC200091322 /* str_format_test.cc in Sources */,
|
||||
E318E71C2C5A4FC900091322 /* time.cc in Sources */,
|
||||
E318DFA82C5A4FBE00091322 /* hashtablez_sampler.cc in Sources */,
|
||||
@@ -5912,7 +5848,6 @@
|
||||
E318E20E2C5A4FC200091322 /* blocking_counter_benchmark.cc in Sources */,
|
||||
E318E7282C5A4FC900091322 /* bad_variant_access.cc in Sources */,
|
||||
E318D9042C59C08300091322 /* font_loader.cc in Sources */,
|
||||
E318D9602C59C08300091322 /* tilesheet.cc in Sources */,
|
||||
E318E12A2C5A4FC100091322 /* zipf_distribution_test.cc in Sources */,
|
||||
E318E1D02C5A4FC200091322 /* match.cc in Sources */,
|
||||
E318E1602C5A4FC100091322 /* cord_data_edge_test.cc in Sources */,
|
||||
@@ -5922,6 +5857,7 @@
|
||||
E318DFBC2C5A4FBE00091322 /* test_instance_tracker.cc in Sources */,
|
||||
E318E1C62C5A4FC200091322 /* cordz_test.cc in Sources */,
|
||||
E318E04A2C5A4FBF00091322 /* config_test.cc in Sources */,
|
||||
E37323CD2D6A0C4800059101 /* hyrule_magic.cc in Sources */,
|
||||
E318E0402C5A4FBF00091322 /* usage.cc in Sources */,
|
||||
E318D9362C59C08300091322 /* instructions.cc in Sources */,
|
||||
E318E6FC2C5A4FC900091322 /* civil_time_benchmark.cc in Sources */,
|
||||
@@ -5943,7 +5879,6 @@
|
||||
E318E1B42C5A4FC200091322 /* charconv.cc in Sources */,
|
||||
E318E13E2C5A4FC100091322 /* bind_test.cc in Sources */,
|
||||
E318DF902C5A4FBE00091322 /* throw_delegate_test.cc in Sources */,
|
||||
E318E78E2C5A536400091322 /* ImGuiFileDialog.cpp in Sources */,
|
||||
E318DF502C5A4FBE00091322 /* spinlock_benchmark.cc in Sources */,
|
||||
E318E1382C5A4FC100091322 /* statusor.cc in Sources */,
|
||||
E318E1AC2C5A4FC200091322 /* ascii.cc in Sources */,
|
||||
@@ -5953,7 +5888,6 @@
|
||||
E318E1582C5A4FC100091322 /* charconv_bigint_test.cc in Sources */,
|
||||
E318E71A2C5A4FC900091322 /* time_zone_test.cc in Sources */,
|
||||
E318E1D22C5A4FC200091322 /* numbers_benchmark.cc in Sources */,
|
||||
E36971E42CE18A2A00DEF2F6 /* file_util.cc in Sources */,
|
||||
E318E1FE2C5A4FC200091322 /* graphcycles_benchmark.cc in Sources */,
|
||||
E318DF282C5A4FBD00091322 /* algorithm_test.cc in Sources */,
|
||||
E318E0EA2C5A4FC000091322 /* randen_slow.cc in Sources */,
|
||||
@@ -6049,6 +5983,7 @@
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
@@ -6068,6 +6003,7 @@
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
@@ -6107,6 +6043,7 @@
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
@@ -6119,6 +6056,7 @@
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
@@ -6131,7 +6069,6 @@
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c17;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
@@ -6143,7 +6080,7 @@
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
HEADER_SEARCH_PATHS = "\"/Users/scawful/Code/yaze/build\"";
|
||||
INFOPLIST_FILE = "$(SRCROOT)/iOS/Info-iOS.plist";
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "Yet Another Zelda3 Editor";
|
||||
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
|
||||
@@ -6175,6 +6112,7 @@
|
||||
"\"$(SRCROOT)/../lib\"",
|
||||
"\"$(SRCROOT)/../lib/abseil-cpp\"",
|
||||
"\"$(SRCROOT)/../lib/imgui\"",
|
||||
"\"/Users/scawful/Code/yaze/build\"",
|
||||
);
|
||||
};
|
||||
name = Debug;
|
||||
@@ -6188,10 +6126,9 @@
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = c17;
|
||||
HEADER_SEARCH_PATHS = "";
|
||||
HEADER_SEARCH_PATHS = "\"/Users/scawful/Code/yaze/build\"";
|
||||
INFOPLIST_FILE = "$(SRCROOT)/iOS/Info-iOS.plist";
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "Yet Another Zelda3 Editor";
|
||||
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
|
||||
@@ -6222,6 +6159,7 @@
|
||||
"\"$(SRCROOT)/../lib\"",
|
||||
"\"$(SRCROOT)/../lib/abseil-cpp\"",
|
||||
"\"$(SRCROOT)/../lib/imgui\"",
|
||||
"\"/Users/scawful/Code/yaze/build\"",
|
||||
);
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
@@ -6235,13 +6173,12 @@
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
INFOPLIST_FILE = "$(SRCROOT)/macOS/Info-macOS.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.halext.yaze-macos";
|
||||
PRODUCT_NAME = yaze;
|
||||
SDKROOT = macosx;
|
||||
@@ -6257,13 +6194,12 @@
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
DEAD_CODE_STRIPPING = YES;
|
||||
DEVELOPMENT_TEAM = SN8Z922TT6;
|
||||
INFOPLIST_FILE = "$(SRCROOT)/macOS/Info-macOS.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/../Frameworks",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.halext.yaze-macos";
|
||||
PRODUCT_NAME = yaze;
|
||||
SDKROOT = macosx;
|
||||
|
||||
Binary file not shown.
@@ -27,12 +27,12 @@
|
||||
<key>yaze_ios.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>7</integer>
|
||||
<integer>12</integer>
|
||||
</dict>
|
||||
<key>yaze_macos.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>4</integer>
|
||||
<integer>5</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
|
||||
Reference in New Issue
Block a user