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