mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-05 21:38:17 +01:00
reorg
This commit is contained in:
parent
365e2a88da
commit
9c1a10b74e
@ -18,12 +18,11 @@ include $(DEVKITPPC)/gamecube_rules
|
||||
TARGET := fceugx-gc
|
||||
TARGETDIR := executables
|
||||
BUILD := build_gc
|
||||
SOURCES := source/ngc/images source/ngc/sounds source/ngc/fonts source/ngc/lang \
|
||||
source/ngc/gui source/ngc \
|
||||
SOURCES := source source/images source/sounds source/fonts source/lang \
|
||||
source/gui source/utils source/utils/sz \
|
||||
source/fceultra source/fceultra/boards source/fceultra/input \
|
||||
source/fceultra/utils source/fceultra/mappers source/fceultra/mbshare \
|
||||
source/sz source/unzip
|
||||
INCLUDES := source/fceultra source/ngc source/unzip
|
||||
source/fceultra/utils source/fceultra/mappers source/fceultra/mbshare
|
||||
INCLUDES := source
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# options for code generation
|
||||
|
11
Makefile.wii
11
Makefile.wii
@ -18,12 +18,11 @@ include $(DEVKITPPC)/wii_rules
|
||||
TARGET := fceugx-wii
|
||||
TARGETDIR := executables
|
||||
BUILD := build_wii
|
||||
SOURCES := source/ngc/images source/ngc/sounds source/ngc/fonts source/ngc/lang \
|
||||
source/ngc/gui source/ngc/utils source/ngc \
|
||||
SOURCES := source source/images source/sounds source/fonts source/lang \
|
||||
source/gui source/utils source/utils/sz source/utils/unzip \
|
||||
source/fceultra source/fceultra/boards source/fceultra/input \
|
||||
source/fceultra/utils source/fceultra/mappers source/fceultra/mbshare \
|
||||
source/sz source/unzip
|
||||
INCLUDES := source/fceultra source/ngc source/unzip
|
||||
source/fceultra/utils source/fceultra/mappers source/fceultra/mbshare
|
||||
INCLUDES := source
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# options for code generation
|
||||
@ -90,7 +89,7 @@ export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
||||
$(TTFFILES:.ttf=.ttf.o) $(LANGFILES:.lang=.lang.o) \
|
||||
$(PNGFILES:.png=.png.o) \
|
||||
$(OGGFILES:.ogg=.ogg.o) $(PCMFILES:.pcm=.pcm.o) \
|
||||
$(CURDIR)/source/ngc/utils/ehcmodule.elf.o
|
||||
$(CURDIR)/source/utils/ehcmodule.elf.o
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# build a list of include paths
|
||||
|
@ -15,9 +15,10 @@
|
||||
#include "fceusupport.h"
|
||||
#include "fileop.h"
|
||||
#include "filebrowser.h"
|
||||
#include "cheat.h"
|
||||
#include "menu.h"
|
||||
|
||||
#include "fceultra/cheat.h"
|
||||
|
||||
int numcheats = 0;
|
||||
|
||||
/****************************************************************************
|
||||
|
@ -20,8 +20,10 @@
|
||||
#include <malloc.h>
|
||||
#include <sys/iosupport.h>
|
||||
|
||||
#include "utils/usb2storage.h"
|
||||
#include "utils/mload.h"
|
||||
#ifdef HW_RVL
|
||||
#include <di/di.h>
|
||||
#endif
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "fceuload.h"
|
||||
#include "fceustate.h"
|
||||
@ -37,14 +39,11 @@
|
||||
#include "pad.h"
|
||||
#include "filelist.h"
|
||||
#include "gui/gui.h"
|
||||
#include "utils/usb2storage.h"
|
||||
#include "utils/mload.h"
|
||||
#include "utils/FreeTypeGX.h"
|
||||
|
||||
#ifdef HW_RVL
|
||||
#include <di/di.h>
|
||||
#endif
|
||||
|
||||
#include "FreeTypeGX.h"
|
||||
|
||||
#include "types.h"
|
||||
#include "fceultra/types.h"
|
||||
|
||||
void FCEUD_Update(uint8 *XBuf, int32 *Buffer, int Count);
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "driver.h"
|
||||
#include "fceultra/driver.h"
|
||||
|
||||
#define APPNAME "FCE Ultra GX"
|
||||
#define APPVERSION "3.1.3"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#include "file.h"
|
||||
#include "fceultra/file.h"
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "gcaudio.h"
|
||||
|
@ -37,7 +37,7 @@
|
||||
#include "utils/memory.h"
|
||||
#include "utils/md5.h"
|
||||
#ifdef GEKKO
|
||||
#include "unzip.h"
|
||||
#include "utils/unzip/unzip.h"
|
||||
#else
|
||||
#include "utils/unzip.h"
|
||||
#endif
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include <malloc.h>
|
||||
#include <fat.h>
|
||||
#include <zlib.h>
|
||||
#include "pngu.h"
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
@ -26,6 +25,7 @@
|
||||
#include "filebrowser.h"
|
||||
#include "fileop.h"
|
||||
#include "gcvideo.h"
|
||||
#include "utils/pngu.h"
|
||||
|
||||
bool SaveState (char * filepath, bool silent)
|
||||
{
|
||||
|
@ -9,11 +9,11 @@
|
||||
* FCEU Support Functions
|
||||
****************************************************************************/
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
#include "pad.h"
|
||||
#include "gcaudio.h"
|
||||
#include "gcvideo.h"
|
||||
#include "fceugx.h"
|
||||
#include "menu.h"
|
||||
|
||||
/**
|
||||
|
@ -18,19 +18,19 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "driver.h"
|
||||
#include "fceu.h"
|
||||
#include "input.h"
|
||||
#include "types.h"
|
||||
#include "state.h"
|
||||
#include "ppu.h"
|
||||
#include "cart.h"
|
||||
#include "x6502.h"
|
||||
#include "git.h"
|
||||
#include "palette.h"
|
||||
#include "sound.h"
|
||||
#include "file.h"
|
||||
#include "cheat.h"
|
||||
#include "fceultra/driver.h"
|
||||
#include "fceultra/fceu.h"
|
||||
#include "fceultra/input.h"
|
||||
#include "fceultra/types.h"
|
||||
#include "fceultra/state.h"
|
||||
#include "fceultra/ppu.h"
|
||||
#include "fceultra/cart.h"
|
||||
#include "fceultra/x6502.h"
|
||||
#include "fceultra/git.h"
|
||||
#include "fceultra/palette.h"
|
||||
#include "fceultra/sound.h"
|
||||
#include "fceultra/file.h"
|
||||
#include "fceultra/cheat.h"
|
||||
|
||||
extern unsigned char * nesrom;
|
||||
|
||||
|
@ -19,8 +19,8 @@
|
||||
#include <di/di.h>
|
||||
#endif
|
||||
|
||||
#include "fceusupport.h"
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
#include "menu.h"
|
||||
#include "filebrowser.h"
|
||||
#include "networkop.h"
|
||||
|
@ -25,8 +25,8 @@
|
||||
#include <ogc/dvd.h>
|
||||
#include <iso9660.h>
|
||||
|
||||
#include "fceusupport.h"
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
#include "fileop.h"
|
||||
#include "networkop.h"
|
||||
#include "gcunzip.h"
|
||||
|
@ -15,18 +15,18 @@
|
||||
#include <string.h>
|
||||
#include <zlib.h>
|
||||
|
||||
extern "C" {
|
||||
#include "../sz/7zCrc.h"
|
||||
#include "../sz/7zIn.h"
|
||||
#include "../sz/7zExtract.h"
|
||||
}
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "fileop.h"
|
||||
#include "filebrowser.h"
|
||||
#include "menu.h"
|
||||
#include "gcunzip.h"
|
||||
|
||||
extern "C" {
|
||||
#include "utils/sz/7zCrc.h"
|
||||
#include "utils/sz/7zIn.h"
|
||||
#include "utils/sz/7zExtract.h"
|
||||
}
|
||||
|
||||
#define ZIPCHUNK 2048
|
||||
|
||||
/*
|
||||
|
@ -19,9 +19,9 @@
|
||||
#include <ogc/texconv.h>
|
||||
#include <ogc/lwp_watchdog.h>
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
#include "gcvideo.h"
|
||||
#include "fceugx.h"
|
||||
#include "videofilter.h"
|
||||
#include "menu.h"
|
||||
#include "pad.h"
|
||||
|
@ -41,14 +41,15 @@
|
||||
#include <math.h>
|
||||
#include <asndlib.h>
|
||||
#include <wiiuse/wpad.h>
|
||||
#include "pngu.h"
|
||||
#include "FreeTypeGX.h"
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "gcvideo.h"
|
||||
#include "filelist.h"
|
||||
#include "fileop.h"
|
||||
#include "pad.h"
|
||||
#include "oggplayer.h"
|
||||
#include "../utils/pngu.h"
|
||||
#include "../utils/FreeTypeGX.h"
|
||||
#include "../utils/oggplayer.h"
|
||||
|
||||
extern FreeTypeGX *fontSystem[];
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
***************************************************************************/
|
||||
|
||||
#include "gui.h"
|
||||
#include "../gettext.h"
|
||||
#include "../utils/gettext.h"
|
||||
|
||||
static GXColor presetColor = (GXColor){255, 255, 255, 255};
|
||||
static int currentSize = 0;
|
||||
|
@ -21,8 +21,8 @@
|
||||
#include <di/di.h>
|
||||
#endif
|
||||
|
||||
#include "fceusupport.h"
|
||||
#include "fceugx.h"
|
||||
#include "fceusupport.h"
|
||||
#include "videofilter.h"
|
||||
#include "pad.h"
|
||||
#include "gcvideo.h"
|
||||
@ -34,13 +34,13 @@
|
||||
#include "fceustate.h"
|
||||
#include "preferences.h"
|
||||
#include "button_mapping.h"
|
||||
#include "gettext.h"
|
||||
#include "filelist.h"
|
||||
#include "gui/gui.h"
|
||||
#include "menu.h"
|
||||
#include "fceuload.h"
|
||||
#include "filelist.h"
|
||||
#include "cheatmgr.h"
|
||||
#include "gui/gui.h"
|
||||
#include "utils/gettext.h"
|
||||
|
||||
#define THREAD_SLEEP 100
|
||||
|
||||
|
@ -24,13 +24,13 @@ ConnectShare (bool silent)
|
||||
#include <mxml.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#include "unzip.h"
|
||||
#include "miniunz.h"
|
||||
#include "fceugx.h"
|
||||
#include "menu.h"
|
||||
#include "fileop.h"
|
||||
#include "http.h"
|
||||
#include "filebrowser.h"
|
||||
#include "utils/http.h"
|
||||
#include "utils/unzip/unzip.h"
|
||||
#include "utils/unzip/miniunz.h"
|
||||
|
||||
bool inNetworkInit = false;
|
||||
static bool networkInit = false;
|
||||
|
@ -20,8 +20,8 @@
|
||||
#include "gcvideo.h"
|
||||
#include "filebrowser.h"
|
||||
#include "button_mapping.h"
|
||||
#include "gui/gui.h"
|
||||
#include "fceuload.h"
|
||||
#include "gui/gui.h"
|
||||
|
||||
int rumbleRequest[4] = {0,0,0,0};
|
||||
GuiTrigger userInput[4];
|
||||
|
@ -16,11 +16,11 @@
|
||||
#include <ogcsys.h>
|
||||
#include <mxml.h>
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "button_mapping.h"
|
||||
#include "filebrowser.h"
|
||||
#include "menu.h"
|
||||
#include "fileop.h"
|
||||
#include "fceugx.h"
|
||||
#include "videofilter.h"
|
||||
#include "pad.h"
|
||||
|
||||
|
@ -18,9 +18,9 @@
|
||||
#include <unistd.h>
|
||||
#include <malloc.h>
|
||||
|
||||
#include "fceugx.h"
|
||||
#include "videofilter.h"
|
||||
#include "gcvideo.h"
|
||||
#include "fceugx.h"
|
||||
#include "menu.h"
|
||||
|
||||
#define NUMBITS (16)
|
||||
|
Loading…
Reference in New Issue
Block a user