menu and controls wip..
[fceu.git] / drivers / gp2x / gp2x.c
CommitLineData
35868d35 1#include <stdio.h>
2#include <stdlib.h>
3#include <string.h>
35868d35 4
b2b95d2e 5#include "../../driver.h"
6#include "../common/config.h"
7#include "../common/args.h"
22f08d95 8#include "gp2x.h"
9#include "gp2x-video.h"
35868d35 10#ifdef NETWORK
11#include "unix-netplay.h"
12#endif
b2b95d2e 13
35868d35 14#include "minimal.h"
b2b95d2e 15#include "cpuctrl.h"
16#include "squidgehack.h"
22f08d95 17
35868d35 18int CLImain(int argc, char *argv[]);
35868d35 19
20//#define SOUND_RATE 44100
21#define SOUND_RATE 22050
22
23DSETTINGS Settings;
24CFGSTRUCT DriverConfig[]={
b547bda7 25 ACA(Settings.KeyBinds),
26 ACA(Settings.JoyBinds),
27 AC(Settings.turbo_rate_add),
b2b95d2e 28 AC(Settings.sound),
b2b95d2e 29 AC(Settings.showfps),
30 AC(Settings.scaling),
31 AC(Settings.frameskip),
32 AC(Settings.sstate_confirm),
33 AC(Settings.region_force),
34 AC(Settings.cpuclock),
35 AC(Settings.mmuhack),
36 AC(Settings.ramtimings),
b547bda7 37 AC(Settings.gamma),
b2b95d2e 38 // TODO
35868d35 39 ENDCFGSTRUCT
40};
41
35868d35 42
43char *DriverUsage=
b2b95d2e 44"-joyx y Use joystick y as virtual joystick x.\n\
35868d35 45-sound x Sound.\n\
46 0 = Disabled.\n\
47 Otherwise, x = playback rate.\n\
b2b95d2e 48-showfps x Display fps counter if x is nonzero\n\
49-mmuhack x Enable squidge's MMU hack if x is nonzero (GP2X).\n\
50-ramtimings x Enable RAM overclocking if x is nonzero (GP2X).\n\
35868d35 51"
b2b95d2e 52#ifdef NETWORK
35868d35 53"-connect s Connect to server 's' for TCP/IP network play.\n\
54-server Be a host/server for TCP/IP network play.\n\
b2b95d2e 55-netport x Use TCP/IP port x for network play."
56#endif
57;
35868d35 58
59#ifdef NETWORK
60static int docheckie[2]={0,0};
61#endif
62ARGPSTRUCT DriverArgs[]={
b2b95d2e 63 {"-sound",0,&Settings.sound,0},
64 {"-showfps",0,&Settings.showfps,0},
65 {"-mmuhack",0,&Settings.mmuhack,0},
66 {"-ramtimings",0,&Settings.ramtimings,0},
67 {"-menu",0,&ext_menu,0x4001},
68 {"-menustate",0,&ext_state,0x4001},
35868d35 69 #ifdef NETWORK
70 {"-connect",&docheckie[0],&netplayhost,0x4001},
71 {"-server",&docheckie[1],0,0},
72 {"-netport",0,&Port,0},
73 #endif
74 {0,0,0,0}
75};
76
77
78
35868d35 79void GetBaseDirectory(char *BaseDirectory)
80{
b2b95d2e 81 strcpy(BaseDirectory, "fceultra");
35868d35 82}
83
84static void SetDefaults(void)
85{
b2b95d2e 86 memset(&Settings,0,sizeof(Settings));
87 Settings.cpuclock = 150;
88 Settings.frameskip = -1; // auto
89 Settings.mmuhack = 1;
b547bda7 90 Settings.sound = SOUND_RATE;
91 // default controls, RLDU SEBA
92 Settings.KeyBinds[ 0] = 0x010; // GP2X_UP
93 Settings.KeyBinds[ 4] = 0x020; // GP2X_DOWN
94 Settings.KeyBinds[ 2] = 0x040; // GP2X_LEFT
95 Settings.KeyBinds[ 6] = 0x080; // GP2X_RIGHT
96 Settings.KeyBinds[13] = 0x001; // GP2X_B
97 Settings.KeyBinds[14] = 0x002; // GP2X_X
98 Settings.KeyBinds[15] = 0x100; // GP2X_Y
99 Settings.KeyBinds[12] = 0x200; // GP2X_A
100 Settings.KeyBinds[ 8] = 0x008; // GP2X_START
101 Settings.KeyBinds[ 9] = 0x004; // GP2X_SELECT
35868d35 102}
103
104void DoDriverArgs(void)
105{
35868d35 106 #ifdef NETWORK
107 if(docheckie[0])
108 netplay=2;
109 else if(docheckie[1])
110 netplay=1;
111
112 if(netplay)
113 FCEUI_SetNetworkPlay(netplay);
114 #endif
35868d35 115}
b2b95d2e 116
35868d35 117int InitMouse(void)
118{
119 return(0);
120}
b2b95d2e 121
35868d35 122void KillMouse(void){}
b2b95d2e 123
35868d35 124void GetMouseData(uint32 *d)
125{
126}
127
128int InitKeyboard(void)
129{
130 return(1);
131}
132
133int UpdateKeyboard(void)
134{
135 return(1);
136}
137
138void KillKeyboard(void)
139{
140
141}
142
143char *GetKeyboard(void)
144{
145 return NULL;
146}
147
b547bda7 148
937bf65b 149char **g_argv;
b547bda7 150int mmuhack_status = 0;
35868d35 151
b2b95d2e 152
153// TODO: cleanup
35868d35 154int main(int argc, char *argv[])
155{
b2b95d2e 156 int ret;
937bf65b 157 g_argv = argv;
35868d35 158
937bf65b 159 puts("Starting GPFCE - Port version " GP2X_PORT_VERSION " (" __DATE__ ")");
35868d35 160 puts("Based on FCE Ultra "VERSION_STRING"...");
937bf65b 161 puts("Ported by Zheng Zhu");
162 puts("Additional optimization/misc work by notaz\n");
35868d35 163
b2b95d2e 164 gp2x_init();
165 cpuctrl_init();
35868d35 166
167 SetDefaults();
b2b95d2e 168
169 ret = CLImain(argc,argv);
35868d35 170
171 // unscale the screen, in case this is bad.
b2b95d2e 172 gp2x_video_RGB_setscaling(0, 320, 240);
35868d35 173
b547bda7 174 if (mmuhack_status > 0)
175 mmuunhack();
176
b2b95d2e 177 cpuctrl_deinit();
35868d35 178 gp2x_deinit();
b2b95d2e 179
35868d35 180 return(ret?0:-1);
181}
182
b2b95d2e 183
b2b95d2e 184/* optional GP2X stuff to be done after config is loaded */
185void gp2x_opt_setup(void)
186{
187 if (Settings.mmuhack) {
188 int ret = mmuhack();
b547bda7 189 printf("squidge hack code finished and returned %s\n", ret > 0 ? "ok" : "fail");
190 fflush(stdout);
b2b95d2e 191 mmuhack_status = ret;
192 }
193 if (Settings.ramtimings) {
194 printf("setting RAM timings.. "); fflush(stdout);
195 // craigix: --trc 6 --tras 4 --twr 1 --tmrd 1 --trfc 1 --trp 2 --trcd 2
196 set_RAM_Timings(6, 4, 1, 1, 1, 2, 2);
197 printf("done.\n"); fflush(stdout);
198 }
199}
200
b547bda7 201void gp2x_cpuclock_update(void)
202{
203 static int prev_cpuclock = 200;
204 if (Settings.cpuclock != 0 && Settings.cpuclock != prev_cpuclock)
205 {
206 set_FCLK(Settings.cpuclock);
207 prev_cpuclock = Settings.cpuclock;
208 }
209}
210
211