From b8ca09160b39120d1f55a2016cb652810dbd5619 Mon Sep 17 00:00:00 2001 From: ShizZy Date: Fri, 13 Sep 2013 18:11:14 -0400 Subject: renamed project to 'citrus' --- src/akiru/CMakeLists.txt | 12 -- src/akiru/akiru.rc | Bin 3144 -> 0 bytes src/akiru/akiru.vcxproj | 214 --------------------------- src/akiru/akiru.vcxproj.filters | 25 ---- src/akiru/resource.h | Bin 898 -> 0 bytes src/akiru/src/akiru.cpp | 87 ----------- src/akiru/src/akiru.h | 35 ----- src/akiru/src/emu_window/emu_window_glfw.cpp | 96 ------------ src/akiru/src/emu_window/emu_window_glfw.h | 56 ------- src/akiru/src/version.h | 6 - 10 files changed, 531 deletions(-) delete mode 100644 src/akiru/CMakeLists.txt delete mode 100644 src/akiru/akiru.rc delete mode 100644 src/akiru/akiru.vcxproj delete mode 100644 src/akiru/akiru.vcxproj.filters delete mode 100644 src/akiru/resource.h delete mode 100644 src/akiru/src/akiru.cpp delete mode 100644 src/akiru/src/akiru.h delete mode 100644 src/akiru/src/emu_window/emu_window_glfw.cpp delete mode 100644 src/akiru/src/emu_window/emu_window_glfw.h delete mode 100644 src/akiru/src/version.h (limited to 'src/akiru') diff --git a/src/akiru/CMakeLists.txt b/src/akiru/CMakeLists.txt deleted file mode 100644 index 9517b11a4..000000000 --- a/src/akiru/CMakeLists.txt +++ /dev/null @@ -1,12 +0,0 @@ -set(SRCS src/akiru.cpp - src/emuwindow/emuwindow_glfw.cpp) - -# NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable) -if (NOT X11_xf86vmode_LIB) - set(X11_xv86vmode_LIB Xxf86vm) -endif() - -add_executable(akiru ${SRCS}) -target_link_libraries(akiru core common ${OPENGL_LIBRARIES} ${GLFW_LIBRARIES} GLEW rt ${X11_Xrandr_LIB} ${X11_xv86vmode_LIB}) - -#install(TARGETS akiru RUNTIME DESTINATION ${bindir}) diff --git a/src/akiru/akiru.rc b/src/akiru/akiru.rc deleted file mode 100644 index dd5241bdf..000000000 Binary files a/src/akiru/akiru.rc and /dev/null differ diff --git a/src/akiru/akiru.vcxproj b/src/akiru/akiru.vcxproj deleted file mode 100644 index 513e3412b..000000000 --- a/src/akiru/akiru.vcxproj +++ /dev/null @@ -1,214 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {CE7D2C07-21CE-4590-81AB-2ADA88A2B85F} - Win32Proj - emu_win32 - akiru - - - - Application - true - - - Application - true - - - Application - false - - - Application - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - msvcrtd.lib;msvcrt.lib - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - libcmt.lib - - - - - - - - - - - - - - - - - - {dfe335fc-755d-4baa-8452-94434f8a1edb} - true - true - false - true - false - - - {8aea7f29-3466-4786-a10d-6a4bd0610977} - true - true - false - true - false - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/akiru/akiru.vcxproj.filters b/src/akiru/akiru.vcxproj.filters deleted file mode 100644 index a0cff2548..000000000 --- a/src/akiru/akiru.vcxproj.filters +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - emu_window - - - - - - - - emu_window - - - - - - - - {e3161526-9f53-4670-8dae-2be81ff01bc2} - - - \ No newline at end of file diff --git a/src/akiru/resource.h b/src/akiru/resource.h deleted file mode 100644 index 0d42c8a8a..000000000 Binary files a/src/akiru/resource.h and /dev/null differ diff --git a/src/akiru/src/akiru.cpp b/src/akiru/src/akiru.cpp deleted file mode 100644 index a31b6fbca..000000000 --- a/src/akiru/src/akiru.cpp +++ /dev/null @@ -1,87 +0,0 @@ -/** - * Copyright (C) 2013 Akiru Emulator - * - * @file akiru.cpp - * @author ShizZy - * @date 2013-09-04 - * @brief Main entry point - * - * @section LICENSE - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details at - * http://www.gnu.org/copyleft/gpl.html - * - * Official project repository can be found at: - * http://code.google.com/p/gekko-gc-emu/ - */ - -#include "common.h" -#include "file_util.h" - -//#if EMU_PLATFORM == PLATFORM_LINUX -//#include -//#endif - -#include "emu_window/emu_window_glfw.h" - -#include "akiru.h" - -//#define PLAY_FIFO_RECORDING - -/// Application entry point -int __cdecl main(int argc, char **argv) { - //u32 tight_loop; - - printf("akiru starting...\n"); - - std::string program_dir = File::GetCurrentDir(); - - //EmuWindow_GLFW* emu_window = new EmuWindow_GLFW; - - //if (E_OK != core::Init(emu_window)) { - // LOG_ERROR(TMASTER, "core initialization failed, exiting..."); - // core::Kill(); - // exit(1); - //} - - //// Load a game or die... - //if (E_OK == dvd::LoadBootableFile(common::g_config->default_boot_file())) { - // if (common::g_config->enable_auto_boot()) { - // core::Start(); - // } else { - // LOG_ERROR(TMASTER, "Autoboot required in no-GUI mode... Exiting!\n"); - // } - //} else { - // LOG_ERROR(TMASTER, "Failed to load a bootable file... Exiting!\n"); - // exit(E_ERR); - //} - //// run the game - //while(core::SYS_DIE != core::g_state) { - // if (core::SYS_RUNNING == core::g_state) { - // if(!(cpu->is_on)) { - // cpu->Start(); // Initialize and start CPU. - // } else { - // for(tight_loop = 0; tight_loop < 10000; ++tight_loop) { - // cpu->execStep(); - // } - // } - // } else if (core::SYS_HALTED == core::g_state) { - // core::Stop(); - // } - //} - //core::Kill(); - - while (1) { - } - - //delete emu_window; - - return 0; -} diff --git a/src/akiru/src/akiru.h b/src/akiru/src/akiru.h deleted file mode 100644 index 4752b961e..000000000 --- a/src/akiru/src/akiru.h +++ /dev/null @@ -1,35 +0,0 @@ -/** - * Copyright (C) 2013 Akiru Emulator - * - * @file akiru.cpp - * @author ShizZy - * @date 2013-09-04 - * @brief Main entry point - * - * @section LICENSE - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details at - * http://www.gnu.org/copyleft/gpl.html - * - * Official project repository can be found at: - * http://code.google.com/p/gekko-gc-emu/ - */ - -#ifndef AKIRU_AKIRU_H_ -#define AKIRU_AKIRU_H_ - -#include "version.h" - -#define APP_NAME "akiru" -#define APP_VERSION "0.31-" VERSION -#define APP_TITLE APP_NAME " " APP_VERSION -#define COPYRIGHT "Copyright (C) 2005-2012 Akiru Team" - -#endif // AKIRU_AKIRU_H_ diff --git a/src/akiru/src/emu_window/emu_window_glfw.cpp b/src/akiru/src/emu_window/emu_window_glfw.cpp deleted file mode 100644 index 01e5992e5..000000000 --- a/src/akiru/src/emu_window/emu_window_glfw.cpp +++ /dev/null @@ -1,96 +0,0 @@ -/** - * Copyright (C) 2013 Akiru Emulator - * - * @file emu_window_glfw.cpp - * @author ShizZy - * @date 2013-09-04 - * @brief Implementation implementation of EmuWindow class for GLFW - * - * @section LICENSE - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details at - * http://www.gnu.org/copyleft/gpl.html - * - * Official project repository can be found at: - * http://code.google.com/p/gekko-gc-emu/ - */ - -#include "common.h" -#include "emu_window_glfw.h" - -static void OnKeyEvent(GLFWwindow* win, int key, int action) { - // EmuWindow_GLFW* emuwin = (EmuWindow_GLFW*)glfwGetWindowUserPointer(win); - //input_common::GCController::GCButtonState state; - - //if (action == GLFW_PRESS) { - // state = input_common::GCController::PRESSED; - //} else { - // state = input_common::GCController::RELEASED; - //} - // for (int channel = 0; channel < 4 && emuwin->controller_interface(); ++channel) { - // emuwin->controller_interface()->SetControllerStatus(channel, key, state); - // } -} - -static void OnWindowSizeEvent(GLFWwindow* win, int width, int height) { - EmuWindow_GLFW* emuwin = (EmuWindow_GLFW*)glfwGetWindowUserPointer(win); - emuwin->set_client_area_width(width); - emuwin->set_client_area_height(height); -} - -/// EmuWindow_GLFW constructor -EmuWindow_GLFW::EmuWindow_GLFW() { - // Initialize the window - if(glfwInit() != GL_TRUE) { - printf("Failed to initialize GLFW! Exiting..."); - exit(1); - } - glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); - render_window_ = glfwCreateWindow(640, 480, "akiru", NULL, NULL); - - // Setup callbacks - glfwSetWindowUserPointer(render_window_, this); - //glfwSetKeyCallback(render_window_, OnKeyEvent); - //glfwSetWindowSizeCallback(render_window_, OnWindowSizeEvent); - - DoneCurrent(); -} - -/// EmuWindow_GLFW destructor -EmuWindow_GLFW::~EmuWindow_GLFW() { - glfwTerminate(); -} - -/// Swap buffers to display the next frame -void EmuWindow_GLFW::SwapBuffers() { - glfwSwapBuffers(render_window_); -} - -/// Polls window events -void EmuWindow_GLFW::PollEvents() { - // TODO(ShizZy): Does this belong here? This is a reasonable place to update the window title - // from the main thread, but this should probably be in an event handler... - static char title[128]; - sprintf(title, "%s (FPS: %02.02f)", window_title_.c_str(), 0.0f); - glfwSetWindowTitle(render_window_, title); - - glfwPollEvents(); -} - -/// Makes the GLFW OpenGL context current for the caller thread -void EmuWindow_GLFW::MakeCurrent() { - glfwMakeContextCurrent(render_window_); -} - -/// Releases (dunno if this is the "right" word) the GLFW context from the caller thread -void EmuWindow_GLFW::DoneCurrent() { - glfwMakeContextCurrent(NULL); -} diff --git a/src/akiru/src/emu_window/emu_window_glfw.h b/src/akiru/src/emu_window/emu_window_glfw.h deleted file mode 100644 index 927d726b8..000000000 --- a/src/akiru/src/emu_window/emu_window_glfw.h +++ /dev/null @@ -1,56 +0,0 @@ -/** - * Copyright (C) 2013 Akiru Emulator - * - * @file emu_window_glfw.h - * @author ShizZy - * @date 2013-09-04 - * @brief Implementation implementation of EmuWindow class for GLFW - * - * @section LICENSE - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details at - * http://www.gnu.org/copyleft/gpl.html - * - * Official project repository can be found at: - * http://code.google.com/p/gekko-gc-emu/ - */ - -#ifndef AKIRU_EMUWINDOW_GLFW_ -#define AKIRU_EMUWINDOW_GLFW_ - -#include -#include - -#include "emu_window.h" - -class EmuWindow_GLFW : public EmuWindow { -public: - EmuWindow_GLFW(); - ~EmuWindow_GLFW(); - - /// Swap buffers to display the next frame - void SwapBuffers(); - - /// Polls window events - void PollEvents(); - - /// Makes the graphics context current for the caller thread - void MakeCurrent(); - - /// Releases (dunno if this is the "right" word) the GLFW context from the caller thread - void DoneCurrent(); - - GLFWwindow* render_window_; ///< Internal GLFW render window - -private: - -}; - -#endif // AKIRU_EMUWINDOW_GLFW_ diff --git a/src/akiru/src/version.h b/src/akiru/src/version.h deleted file mode 100644 index 07b88c641..000000000 --- a/src/akiru/src/version.h +++ /dev/null @@ -1,6 +0,0 @@ -// GENERATED - Do not edit! -#ifndef VERSION_H_ -#define VERSION_H_ -#define __BUILD__ "122" -#define VERSION __BUILD__ -#endif // VERSION_H_ -- cgit v1.2.3