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