e906c010 |
1 | /* |
dde7da71 |
2 | * (C) notaz, 2010-2012 |
e906c010 |
3 | * |
4 | * This work is licensed under the terms of the GNU GPLv2 or later. |
5 | * See the COPYING file in the top-level directory. |
6 | */ |
7 | |
80c2304e |
8 | #include <stdio.h> |
9 | #include <string.h> |
10 | #include <stdarg.h> |
80c2304e |
11 | #include <unistd.h> |
c5061935 |
12 | #include <signal.h> |
29a8c4f3 |
13 | #include <time.h> |
c4052f4d |
14 | #if !defined(_WIN32) && !defined(NO_DYLIB) |
003cfc63 |
15 | #include <dlfcn.h> |
16 | #endif |
80c2304e |
17 | |
c5061935 |
18 | #include "main.h" |
e906c010 |
19 | #include "plugin.h" |
7c0f51de |
20 | #include "plugin_lib.h" |
14dffdb7 |
21 | #include "pcnt.h" |
3c70c47b |
22 | #include "menu.h" |
47821672 |
23 | #include "plat.h" |
80c2304e |
24 | #include "../libpcsxcore/misc.h" |
9c27c205 |
25 | #include "../libpcsxcore/cheat.h" |
799b0b87 |
26 | #include "../libpcsxcore/new_dynarec/new_dynarec.h" |
47bf65ab |
27 | #include "../plugins/cdrcimg/cdrcimg.h" |
3154bfab |
28 | #include "../plugins/dfsound/spu_config.h" |
ace14ab3 |
29 | #include "arm_features.h" |
38c2028e |
30 | #include "revision.h" |
80c2304e |
31 | |
b01fca94 |
32 | #if defined(__has_builtin) |
33 | #define DO_CPU_CHECKS __has_builtin(__builtin_cpu_init) |
34 | #elif defined(__x86_64__) || defined(__i386__) |
35 | #define DO_CPU_CHECKS 1 |
36 | #else |
37 | #define DO_CPU_CHECKS 0 |
38 | #endif |
39 | |
cc56203b |
40 | #ifndef NO_FRONTEND |
41 | #include "libpicofe/input.h" |
42 | #include "libpicofe/plat.h" |
43 | #include "libpicofe/readpng.h" |
87e5b45f |
44 | |
45 | static void toggle_fast_forward(int force_off); |
e6495add |
46 | static void check_profile(void); |
47 | static void check_memcards(void); |
cc56203b |
48 | #endif |
a1b44e36 |
49 | #ifndef BOOT_MSG |
50 | #define BOOT_MSG "Booting up..." |
51 | #endif |
cc56203b |
52 | |
fc8145b7 |
53 | // don't include debug.h - it breaks ARM build (R1 redefined) |
cab87bf3 |
54 | static void StartDebugger() {} |
55 | static void StopDebugger() {} |
fc8145b7 |
56 | |
69e482e3 |
57 | int ready_to_go, g_emu_want_quit, g_emu_resetting; |
c5061935 |
58 | unsigned long gpuDisp; |
59 | char cfgfile_basename[MAXPATHLEN]; |
8f892648 |
60 | int state_slot; |
61 | enum sched_action emu_action, emu_action_old; |
62 | char hud_msg[64]; |
63 | int hud_new_msg; |
64 | |
80c2304e |
65 | static void make_path(char *buf, size_t size, const char *dir, const char *fname) |
66 | { |
67 | if (fname) |
68 | snprintf(buf, size, ".%s%s", dir, fname); |
69 | else |
70 | snprintf(buf, size, ".%s", dir); |
71 | } |
72 | #define MAKE_PATH(buf, dir, fname) \ |
73 | make_path(buf, sizeof(buf), dir, fname) |
74 | |
29a8c4f3 |
75 | static int get_gameid_filename(char *buf, int size, const char *fmt, int i) { |
76 | char trimlabel[33]; |
77 | int j; |
78 | |
79 | strncpy(trimlabel, CdromLabel, 32); |
80 | trimlabel[32] = 0; |
81 | for (j = 31; j >= 0; j--) |
82 | if (trimlabel[j] == ' ') |
83 | trimlabel[j] = 0; |
84 | else |
85 | continue; |
86 | |
87 | snprintf(buf, size, fmt, trimlabel, CdromId, i); |
88 | |
89 | return 0; |
80c2304e |
90 | } |
91 | |
47bf65ab |
92 | void set_cd_image(const char *fname) |
93 | { |
e16a7e51 |
94 | const char *ext = NULL; |
47bf65ab |
95 | |
33716956 |
96 | if (fname != NULL) |
97 | ext = strrchr(fname, '.'); |
47bf65ab |
98 | |
33716956 |
99 | if (ext && ( |
100 | strcasecmp(ext, ".z") == 0 || strcasecmp(ext, ".bz") == 0 || |
9a92bffb |
101 | strcasecmp(ext, ".znx") == 0 /*|| strcasecmp(ext, ".pbp") == 0*/)) { |
47bf65ab |
102 | SetIsoFile(NULL); |
103 | cdrcimg_set_fname(fname); |
104 | strcpy(Config.Cdr, "builtin_cdrcimg"); |
105 | } else { |
106 | SetIsoFile(fname); |
107 | strcpy(Config.Cdr, "builtin_cdr"); |
108 | } |
109 | } |
110 | |
6fe1f056 |
111 | static void set_default_paths(void) |
112 | { |
e6495add |
113 | #ifndef NO_FRONTEND |
114 | snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "." PATCHES_DIR); |
6fe1f056 |
115 | MAKE_PATH(Config.Mcd1, MEMCARD_DIR, "card1.mcd"); |
116 | MAKE_PATH(Config.Mcd2, MEMCARD_DIR, "card2.mcd"); |
117 | strcpy(Config.BiosDir, "bios"); |
e6495add |
118 | #endif |
6fe1f056 |
119 | |
120 | strcpy(Config.PluginsDir, "plugins"); |
121 | strcpy(Config.Gpu, "builtin_gpu"); |
122 | strcpy(Config.Spu, "builtin_spu"); |
123 | strcpy(Config.Cdr, "builtin_cdr"); |
124 | strcpy(Config.Pad1, "builtin_pad"); |
125 | strcpy(Config.Pad2, "builtin_pad"); |
126 | strcpy(Config.Net, "Disabled"); |
6fe1f056 |
127 | } |
128 | |
33400707 |
129 | void emu_set_default_config(void) |
130 | { |
131 | // try to set sane config on which most games work |
840639a5 |
132 | Config.Xa = Config.Cdda = 0; |
133 | Config.icache_emulation = 0; |
33400707 |
134 | Config.PsxAuto = 1; |
1562ed57 |
135 | Config.cycle_multiplier = CYCLE_MULT_DEFAULT; |
fae38d7a |
136 | Config.GpuListWalking = -1; |
33400707 |
137 | |
746fee51 |
138 | pl_rearmed_cbs.gpu_neon.allow_interlace = 2; // auto |
0b02eb77 |
139 | pl_rearmed_cbs.gpu_neon.enhancement_enable = |
140 | pl_rearmed_cbs.gpu_neon.enhancement_no_main = 0; |
33400707 |
141 | pl_rearmed_cbs.gpu_peops.iUseDither = 0; |
142 | pl_rearmed_cbs.gpu_peops.dwActFixes = 1<<7; |
5b568098 |
143 | #if 0 |
144 | pl_rearmed_cbs.gpu_senquack.ilace_force = 0; |
145 | pl_rearmed_cbs.gpu_senquack.pixel_skip = 0; |
146 | pl_rearmed_cbs.gpu_senquack.lighting = 1; |
147 | pl_rearmed_cbs.gpu_senquack.fast_lighting = 0; |
148 | pl_rearmed_cbs.gpu_senquack.blending = 1; |
149 | pl_rearmed_cbs.gpu_senquack.dithering = 0; |
150 | #else |
030d1121 |
151 | pl_rearmed_cbs.gpu_unai.lighting = 1; |
030d1121 |
152 | pl_rearmed_cbs.gpu_unai.blending = 1; |
5b568098 |
153 | #endif |
33400707 |
154 | pl_rearmed_cbs.gpu_unai.abe_hack = |
155 | pl_rearmed_cbs.gpu_unai.no_light = |
156 | pl_rearmed_cbs.gpu_unai.no_blend = 0; |
e60da159 |
157 | memset(&pl_rearmed_cbs.gpu_peopsgl, 0, sizeof(pl_rearmed_cbs.gpu_peopsgl)); |
746fee51 |
158 | pl_rearmed_cbs.gpu_peopsgl.iVRamSize = 64; |
cbb26048 |
159 | pl_rearmed_cbs.gpu_peopsgl.iTexGarbageCollection = 1; |
33400707 |
160 | |
3154bfab |
161 | spu_config.iUseReverb = 1; |
162 | spu_config.iUseInterpolation = 1; |
163 | spu_config.iXAPitch = 0; |
164 | spu_config.iVolume = 768; |
165 | spu_config.iTempo = 0; |
04d27b25 |
166 | // may cause issues, no effect if only 1 core is detected |
167 | spu_config.iUseThread = 0; |
bbb541fb |
168 | #if defined(HAVE_PRE_ARMV7) && !defined(_3DS) /* XXX GPH hack */ |
3154bfab |
169 | spu_config.iUseReverb = 0; |
170 | spu_config.iUseInterpolation = 0; |
71f31f3f |
171 | #ifndef HAVE_LIBRETRO |
3154bfab |
172 | spu_config.iTempo = 1; |
44c38f79 |
173 | #endif |
33400707 |
174 | #endif |
175 | new_dynarec_hacks = 0; |
33400707 |
176 | |
61c4962a |
177 | in_type[0] = PSE_PAD_TYPE_STANDARD; |
178 | in_type[1] = PSE_PAD_TYPE_STANDARD; |
33400707 |
179 | } |
180 | |
8f892648 |
181 | void do_emu_action(void) |
182 | { |
183 | int ret; |
184 | |
185 | emu_action_old = emu_action; |
186 | |
187 | switch (emu_action) { |
8f892648 |
188 | case SACTION_LOAD_STATE: |
189 | ret = emu_load_state(state_slot); |
190 | snprintf(hud_msg, sizeof(hud_msg), ret == 0 ? "LOADED" : "FAIL!"); |
191 | break; |
192 | case SACTION_SAVE_STATE: |
193 | ret = emu_save_state(state_slot); |
194 | snprintf(hud_msg, sizeof(hud_msg), ret == 0 ? "SAVED" : "FAIL!"); |
195 | break; |
38c2028e |
196 | #ifndef NO_FRONTEND |
197 | case SACTION_ENTER_MENU: |
456f1b86 |
198 | toggle_fast_forward(1); |
38c2028e |
199 | menu_loop(); |
200 | return; |
8f892648 |
201 | case SACTION_NEXT_SSLOT: |
202 | state_slot++; |
203 | if (state_slot > 9) |
204 | state_slot = 0; |
205 | goto do_state_slot; |
206 | case SACTION_PREV_SSLOT: |
207 | state_slot--; |
208 | if (state_slot < 0) |
209 | state_slot = 9; |
38c2028e |
210 | do_state_slot: |
211 | snprintf(hud_msg, sizeof(hud_msg), "STATE SLOT %d [%s]", state_slot, |
212 | emu_check_state(state_slot) == 0 ? "USED" : "FREE"); |
213 | hud_new_msg = 3; |
f29fbd53 |
214 | SysPrintf("* %s\n", hud_msg); |
38c2028e |
215 | break; |
8f892648 |
216 | case SACTION_TOGGLE_FSKIP: |
ea4a16e7 |
217 | pl_rearmed_cbs.fskip_advice = 0; |
218 | pl_rearmed_cbs.frameskip++; |
219 | if (pl_rearmed_cbs.frameskip > 1) |
220 | pl_rearmed_cbs.frameskip = -1; |
221 | snprintf(hud_msg, sizeof(hud_msg), "FRAMESKIP: %s", |
222 | pl_rearmed_cbs.frameskip == -1 ? "AUTO" : |
223 | pl_rearmed_cbs.frameskip == 0 ? "OFF" : "1" ); |
224 | plugin_call_rearmed_cbs(); |
8f892648 |
225 | break; |
fa56d360 |
226 | case SACTION_SWITCH_DISPMODE: |
227 | pl_switch_dispmode(); |
d81b8e97 |
228 | plugin_call_rearmed_cbs(); |
fa56d360 |
229 | if (GPU_open != NULL && GPU_close != NULL) { |
230 | GPU_close(); |
231 | GPU_open(&gpuDisp, "PCSX", NULL); |
232 | } |
d81b8e97 |
233 | break; |
456f1b86 |
234 | case SACTION_FAST_FORWARD: |
235 | toggle_fast_forward(0); |
236 | plugin_call_rearmed_cbs(); |
237 | break; |
dde7da71 |
238 | case SACTION_TOGGLE_FPS: |
239 | if ((g_opts & (OPT_SHOWFPS|OPT_SHOWCPU)) |
240 | == (OPT_SHOWFPS|OPT_SHOWCPU)) |
241 | g_opts &= ~(OPT_SHOWFPS|OPT_SHOWCPU); |
242 | else if (g_opts & OPT_SHOWFPS) |
243 | g_opts |= OPT_SHOWCPU; |
244 | else |
245 | g_opts |= OPT_SHOWFPS; |
246 | break; |
a8376201 |
247 | case SACTION_TOGGLE_FULLSCREEN: |
5b9aa749 |
248 | plat_target.vout_fullscreen = !plat_target.vout_fullscreen; |
c9099d02 |
249 | if (GPU_open != NULL && GPU_close != NULL) { |
250 | GPU_close(); |
251 | GPU_open(&gpuDisp, "PCSX", NULL); |
252 | } |
a8376201 |
253 | break; |
29a8c4f3 |
254 | case SACTION_SCREENSHOT: |
255 | { |
38c2028e |
256 | char buf[MAXPATHLEN]; |
29a8c4f3 |
257 | void *scrbuf; |
258 | int w, h, bpp; |
259 | time_t t = time(NULL); |
260 | struct tm *tb = localtime(&t); |
261 | int ti = tb->tm_yday * 1000000 + tb->tm_hour * 10000 + |
262 | tb->tm_min * 100 + tb->tm_sec; |
263 | |
264 | scrbuf = pl_prepare_screenshot(&w, &h, &bpp); |
265 | get_gameid_filename(buf, sizeof(buf), |
266 | "screenshots/%.32s-%.9s.%d.png", ti); |
267 | ret = -1; |
268 | if (scrbuf != 0 && bpp == 16) |
269 | ret = writepng(buf, scrbuf, w, h); |
270 | if (ret == 0) |
271 | snprintf(hud_msg, sizeof(hud_msg), "SCREENSHOT TAKEN"); |
272 | break; |
273 | } |
221be40d |
274 | case SACTION_VOLUME_UP: |
275 | case SACTION_VOLUME_DOWN: |
bcfc48e3 |
276 | { |
277 | static int volume; |
278 | plat_target_step_volume(&volume, |
279 | emu_action == SACTION_VOLUME_UP ? 1 : -1); |
280 | } |
221be40d |
281 | return; |
a805c855 |
282 | case SACTION_MINIMIZE: |
36dfb787 |
283 | if (GPU_close != NULL) |
284 | GPU_close(); |
285 | |
a805c855 |
286 | plat_minimize(); |
36dfb787 |
287 | |
288 | if (GPU_open != NULL) { |
289 | ret = GPU_open(&gpuDisp, "PCSX", NULL); |
290 | if (ret) |
f29fbd53 |
291 | SysMessage("GPU_open returned %d", ret); |
36dfb787 |
292 | } |
a805c855 |
293 | return; |
38c2028e |
294 | #endif |
4c08b9e7 |
295 | default: |
296 | return; |
8f892648 |
297 | } |
8f892648 |
298 | |
8f892648 |
299 | hud_new_msg = 3; |
300 | } |
301 | |
cae602d4 |
302 | static char basic_lcase(char c) |
303 | { |
304 | if ('A' <= c && c <= 'Z') |
305 | return c - 'A' + 'a'; |
306 | return c; |
307 | } |
308 | |
9c27c205 |
309 | static int cdidcmp(const char *id1, const char *id2) |
310 | { |
311 | while (*id1 != 0 && *id2 != 0) { |
312 | if (*id1 == '_') { id1++; continue; } |
313 | if (*id2 == '_') { id2++; continue; } |
cae602d4 |
314 | if (basic_lcase(*id1) != basic_lcase(*id2)) |
9c27c205 |
315 | break; |
316 | id1++; |
317 | id2++; |
318 | } |
319 | |
320 | return *id1 - *id2; |
321 | } |
322 | |
323 | static void parse_cwcheat(void) |
324 | { |
4b7da20a |
325 | char line[256], buf[256], name[256], *p; |
9c27c205 |
326 | int newcheat = 1; |
327 | u32 a, v; |
328 | FILE *f; |
329 | |
330 | f = fopen("cheatpops.db", "r"); |
331 | if (f == NULL) |
332 | return; |
333 | |
334 | /* find the game */ |
335 | while (fgets(line, sizeof(line), f)) { |
336 | if (sscanf(line, "_S %63s", buf) != 1) |
337 | continue; |
338 | if (cdidcmp(buf, CdromId) == 0) |
339 | break; |
340 | } |
341 | |
342 | if (feof(f)) |
343 | goto out; |
344 | |
f29fbd53 |
345 | SysPrintf("cwcheat section found for %s\n", CdromId); |
9c27c205 |
346 | while (fgets(line, sizeof(line), f)) |
347 | { |
348 | p = line + strlen(line); |
349 | for (p--; p >= line && (*p == '\r' || *p == '\n' || *p == ' '); p--) |
350 | *p = 0; |
351 | if (*p == 0 || *p == '#' || *p == ';') |
352 | continue; |
353 | |
354 | if (strncmp(line, "_S", 2) == 0) |
355 | break; |
356 | if (strncmp(line, "_G", 2) == 0) { |
f29fbd53 |
357 | SysPrintf(" cwcheat game name: '%s'\n", line + 3); |
9c27c205 |
358 | continue; |
359 | } |
360 | if (strncmp(line, "_C0", 3) == 0) { |
361 | if (!newcheat && Cheats[NumCheats - 1].n == 0) { |
f29fbd53 |
362 | SysPrintf("cheat '%s' failed to parse\n", name); |
9c27c205 |
363 | free(Cheats[NumCheats - 1].Descr); |
364 | NumCheats--; |
365 | } |
366 | snprintf(name, sizeof(name), "%s", line + 4); |
367 | newcheat = 1; |
368 | continue; |
369 | } |
370 | if (sscanf(line, "_L %x %x", &a, &v) != 2) { |
f29fbd53 |
371 | SysPrintf("line failed to parse: '%s'\n", line); |
9c27c205 |
372 | continue; |
373 | } |
374 | |
375 | if (newcheat) { |
376 | if (NumCheats >= NumCheatsAllocated) { |
377 | NumCheatsAllocated += 16; |
378 | Cheats = realloc(Cheats, sizeof(Cheat) * |
379 | NumCheatsAllocated); |
380 | if (Cheats == NULL) |
381 | break; |
382 | } |
383 | Cheats[NumCheats].Descr = strdup(name); |
384 | Cheats[NumCheats].Enabled = 0; |
2c843d96 |
385 | Cheats[NumCheats].WasEnabled = 0; |
9c27c205 |
386 | Cheats[NumCheats].First = NumCodes; |
387 | Cheats[NumCheats].n = 0; |
388 | NumCheats++; |
389 | newcheat = 0; |
390 | } |
391 | |
392 | if (NumCodes >= NumCodesAllocated) { |
393 | NumCodesAllocated += 16; |
394 | CheatCodes = realloc(CheatCodes, sizeof(CheatCode) * |
395 | NumCodesAllocated); |
396 | if (CheatCodes == NULL) |
397 | break; |
398 | } |
399 | CheatCodes[NumCodes].Addr = a; |
400 | CheatCodes[NumCodes].Val = v; |
401 | NumCodes++; |
402 | Cheats[NumCheats - 1].n++; |
403 | } |
404 | |
405 | out: |
406 | fclose(f); |
407 | } |
408 | |
79f216e3 |
409 | void emu_on_new_cd(int show_hud_msg) |
9c27c205 |
410 | { |
411 | ClearAllCheats(); |
412 | parse_cwcheat(); |
413 | |
414 | if (Config.HLE) { |
f29fbd53 |
415 | SysPrintf("note: running with HLE BIOS, expect compatibility problems\n"); |
416 | SysPrintf("----------------------------------------------------------\n"); |
9c27c205 |
417 | } |
418 | |
79f216e3 |
419 | if (show_hud_msg) { |
420 | snprintf(hud_msg, sizeof(hud_msg), BOOT_MSG); |
421 | hud_new_msg = 3; |
422 | } |
9c27c205 |
423 | } |
424 | |
b01fca94 |
425 | static void log_wrong_cpu(void) |
426 | { |
427 | #if DO_CPU_CHECKS |
428 | __builtin_cpu_init(); |
429 | #define CHECK_CPU(name) if (!__builtin_cpu_supports(name)) \ |
430 | SysPrintf("ERROR: compiled for " name ", which is unsupported by the CPU\n") |
431 | #ifdef __SSE2__ |
432 | CHECK_CPU("sse2"); |
433 | #endif |
434 | #ifdef __SSSE3__ |
435 | CHECK_CPU("ssse3"); |
436 | #endif |
437 | #ifdef __SSE4_1__ |
b4f2c7d9 |
438 | CHECK_CPU("sse4.1"); |
b01fca94 |
439 | #endif |
440 | #endif // DO_CPU_CHECKS |
441 | } |
442 | |
38c2028e |
443 | int emu_core_preinit(void) |
80c2304e |
444 | { |
80c2304e |
445 | // what is the name of the config file? |
446 | // it may be redefined by -cfg on the command line |
447 | strcpy(cfgfile_basename, "pcsx.cfg"); |
448 | |
ea12009c |
449 | #ifdef IOS |
450 | emuLog = fopen("/User/Documents/pcsxr.log", "w"); |
451 | if (emuLog == NULL) |
452 | emuLog = fopen("pcsxr.log", "w"); |
453 | if (emuLog == NULL) |
454 | #endif |
e906c010 |
455 | emuLog = stdout; |
ea12009c |
456 | |
b01fca94 |
457 | log_wrong_cpu(); |
458 | |
80c2304e |
459 | SetIsoFile(NULL); |
80c2304e |
460 | |
e0c692d9 |
461 | memset(&Config, 0, sizeof(Config)); |
462 | |
e0c692d9 |
463 | set_default_paths(); |
33400707 |
464 | emu_set_default_config(); |
e0c692d9 |
465 | strcpy(Config.Bios, "HLE"); |
466 | |
38c2028e |
467 | return 0; |
468 | } |
469 | |
470 | int emu_core_init(void) |
471 | { |
45b97ede |
472 | SysPrintf("Starting PCSX-ReARMed " REV "\n"); |
473 | |
e6495add |
474 | #ifndef NO_FRONTEND |
475 | check_profile(); |
38c2028e |
476 | check_memcards(); |
e6495add |
477 | #endif |
38c2028e |
478 | |
479 | if (EmuInit() == -1) { |
f29fbd53 |
480 | SysPrintf("PSX emulator couldn't be initialized.\n"); |
38c2028e |
481 | return -1; |
482 | } |
483 | |
484 | LoadMcds(Config.Mcd1, Config.Mcd2); |
485 | |
486 | if (Config.Debug) { |
487 | StartDebugger(); |
488 | } |
489 | |
490 | return 0; |
491 | } |
492 | |
69e482e3 |
493 | void emu_core_ask_exit(void) |
494 | { |
495 | stop = 1; |
496 | g_emu_want_quit = 1; |
497 | } |
498 | |
38c2028e |
499 | #ifndef NO_FRONTEND |
003cfc63 |
500 | |
501 | #include <sys/stat.h> |
502 | #include <sys/types.h> |
503 | |
e6495add |
504 | static void create_profile_dir(const char *directory) { |
505 | char path[MAXPATHLEN]; |
506 | |
507 | MAKE_PATH(path, directory, NULL); |
508 | mkdir(path, S_IRWXU | S_IRWXG); |
509 | } |
510 | |
511 | static void check_profile(void) { |
512 | // make sure that ~/.pcsx exists |
513 | create_profile_dir(PCSX_DOT_DIR); |
514 | |
515 | create_profile_dir(BIOS_DIR); |
516 | create_profile_dir(MEMCARD_DIR); |
517 | create_profile_dir(STATES_DIR); |
518 | create_profile_dir(PLUGINS_DIR); |
519 | create_profile_dir(PLUGINS_CFG_DIR); |
520 | create_profile_dir(CHEATS_DIR); |
521 | create_profile_dir(PATCHES_DIR); |
522 | create_profile_dir(PCSX_DOT_DIR "cfg"); |
523 | create_profile_dir("/screenshots/"); |
524 | } |
525 | |
526 | static void check_memcards(void) |
527 | { |
528 | char buf[MAXPATHLEN]; |
529 | FILE *f; |
530 | int i; |
531 | |
532 | for (i = 1; i <= 9; i++) { |
533 | snprintf(buf, sizeof(buf), ".%scard%d.mcd", MEMCARD_DIR, i); |
534 | |
535 | f = fopen(buf, "rb"); |
536 | if (f == NULL) { |
537 | SysPrintf("Creating memcard: %s\n", buf); |
538 | CreateMcd(buf); |
539 | } |
540 | else |
541 | fclose(f); |
542 | } |
543 | } |
544 | |
38c2028e |
545 | int main(int argc, char *argv[]) |
546 | { |
e0c692d9 |
547 | char file[MAXPATHLEN] = ""; |
548 | char path[MAXPATHLEN]; |
549 | const char *cdfile = NULL; |
de910c6b |
550 | const char *loadst_f = NULL; |
0a151868 |
551 | int psxout = 0; |
e0c692d9 |
552 | int loadst = 0; |
553 | int i; |
554 | |
38c2028e |
555 | emu_core_preinit(); |
556 | |
80c2304e |
557 | // read command line options |
558 | for (i = 1; i < argc; i++) { |
0a151868 |
559 | if (!strcmp(argv[i], "-psxout")) psxout = 1; |
80c2304e |
560 | else if (!strcmp(argv[i], "-load")) loadst = atol(argv[++i]); |
561 | else if (!strcmp(argv[i], "-cfg")) { |
562 | if (i+1 >= argc) break; |
563 | strncpy(cfgfile_basename, argv[++i], MAXPATHLEN-100); /* TODO buffer overruns */ |
f29fbd53 |
564 | SysPrintf("Using config file %s.\n", cfgfile_basename); |
80c2304e |
565 | } |
566 | else if (!strcmp(argv[i], "-cdfile")) { |
567 | char isofilename[MAXPATHLEN]; |
568 | |
569 | if (i+1 >= argc) break; |
570 | strncpy(isofilename, argv[++i], MAXPATHLEN); |
571 | if (isofilename[0] != '/') { |
572 | getcwd(path, MAXPATHLEN); |
573 | if (strlen(path) + strlen(isofilename) + 1 < MAXPATHLEN) { |
574 | strcat(path, "/"); |
575 | strcat(path, isofilename); |
576 | strcpy(isofilename, path); |
577 | } else |
578 | isofilename[0] = 0; |
579 | } |
580 | |
47bf65ab |
581 | cdfile = isofilename; |
80c2304e |
582 | } |
de910c6b |
583 | else if (!strcmp(argv[i], "-loadf")) { |
584 | if (i+1 >= argc) break; |
585 | loadst_f = argv[++i]; |
586 | } |
80c2304e |
587 | else if (!strcmp(argv[i], "-h") || |
588 | !strcmp(argv[i], "-help") || |
589 | !strcmp(argv[i], "--help")) { |
38c2028e |
590 | printf("PCSX-ReARMed " REV "\n"); |
80c2304e |
591 | printf("%s\n", _( |
592 | " pcsx [options] [file]\n" |
593 | "\toptions:\n" |
594 | "\t-cdfile FILE\tRuns a CD image file\n" |
80c2304e |
595 | "\t-cfg FILE\tLoads desired configuration file (default: ~/.pcsx/pcsx.cfg)\n" |
596 | "\t-psxout\t\tEnable PSX output\n" |
597 | "\t-load STATENUM\tLoads savestate STATENUM (1-5)\n" |
598 | "\t-h -help\tDisplay this message\n" |
38c2028e |
599 | "\tfile\t\tLoads a PSX EXE file\n")); |
80c2304e |
600 | return 0; |
601 | } else { |
602 | strncpy(file, argv[i], MAXPATHLEN); |
603 | if (file[0] != '/') { |
604 | getcwd(path, MAXPATHLEN); |
605 | if (strlen(path) + strlen(file) + 1 < MAXPATHLEN) { |
606 | strcat(path, "/"); |
607 | strcat(path, file); |
608 | strcpy(file, path); |
609 | } else |
610 | file[0] = 0; |
611 | } |
612 | } |
613 | } |
614 | |
47bf65ab |
615 | if (cdfile) |
616 | set_cd_image(cdfile); |
617 | |
69af03a2 |
618 | // frontend stuff |
b07c18e8 |
619 | // init input but leave probing to platform code, |
620 | // they add input drivers and may need to modify them after probe |
69af03a2 |
621 | in_init(); |
59f1c85c |
622 | pl_init(); |
69af03a2 |
623 | plat_init(); |
0a151868 |
624 | menu_init(); // loads config |
625 | |
45b97ede |
626 | if (emu_core_init() != 0) |
627 | return 1; |
38c2028e |
628 | |
0a151868 |
629 | if (psxout) |
630 | Config.PsxOut = 1; |
80c2304e |
631 | |
69af03a2 |
632 | if (LoadPlugins() == -1) { |
6fe1f056 |
633 | // FIXME: this recovery doesn't work, just delete bad config and bail out |
634 | // SysMessage("could not load plugins, retrying with defaults\n"); |
635 | set_default_paths(); |
636 | snprintf(path, sizeof(path), "." PCSX_DOT_DIR "%s", cfgfile_basename); |
637 | remove(path); |
69af03a2 |
638 | SysMessage("Failed loading plugins!"); |
639 | return 1; |
640 | } |
641 | pcnt_hook_plugins(); |
80c2304e |
642 | |
69af03a2 |
643 | if (OpenPlugins() == -1) { |
644 | return 1; |
645 | } |
201c21e2 |
646 | plugin_call_rearmed_cbs(); |
80c2304e |
647 | |
69af03a2 |
648 | CheckCdrom(); |
bbd837c6 |
649 | SysReset(); |
69af03a2 |
650 | |
651 | if (file[0] != '\0') { |
652 | if (Load(file) != -1) |
653 | ready_to_go = 1; |
654 | } else { |
47bf65ab |
655 | if (cdfile) { |
69af03a2 |
656 | if (LoadCdrom() == -1) { |
657 | ClosePlugins(); |
f29fbd53 |
658 | SysPrintf(_("Could not load CD-ROM!\n")); |
69af03a2 |
659 | return -1; |
80c2304e |
660 | } |
79f216e3 |
661 | emu_on_new_cd(!loadst); |
69af03a2 |
662 | ready_to_go = 1; |
80c2304e |
663 | } |
69af03a2 |
664 | } |
80c2304e |
665 | |
ea66e884 |
666 | if (loadst_f) { |
667 | int ret = LoadState(loadst_f); |
f29fbd53 |
668 | SysPrintf("%s state file: %s\n", |
669 | ret ? "failed to load" : "loaded", loadst_f); |
ea66e884 |
670 | ready_to_go |= ret == 0; |
671 | } |
672 | |
45d45c1e |
673 | if (ready_to_go) { |
3c70c47b |
674 | menu_prepare_emu(); |
45d45c1e |
675 | |
676 | // If a state has been specified, then load that |
677 | if (loadst) { |
678 | int ret = emu_load_state(loadst - 1); |
f29fbd53 |
679 | SysPrintf("%s state %d\n", |
680 | ret ? "failed to load" : "loaded", loadst); |
45d45c1e |
681 | } |
682 | } |
3c70c47b |
683 | else |
69af03a2 |
684 | menu_loop(); |
685 | |
7c0f51de |
686 | pl_start_watchdog(); |
687 | |
69e482e3 |
688 | while (!g_emu_want_quit) |
69af03a2 |
689 | { |
799b0b87 |
690 | stop = 0; |
8f892648 |
691 | emu_action = SACTION_NONE; |
692 | |
80c2304e |
693 | psxCpu->Execute(); |
8f892648 |
694 | if (emu_action != SACTION_NONE) |
695 | do_emu_action(); |
80c2304e |
696 | } |
697 | |
69e482e3 |
698 | printf("Exit..\n"); |
699 | ClosePlugins(); |
700 | SysClose(); |
701 | menu_finish(); |
702 | plat_finish(); |
703 | |
80c2304e |
704 | return 0; |
705 | } |
456f1b86 |
706 | |
707 | static void toggle_fast_forward(int force_off) |
708 | { |
709 | static int fast_forward; |
710 | static int normal_g_opts; |
711 | static int normal_frameskip; |
712 | static int normal_enhancement_enable; |
713 | |
714 | if (force_off && !fast_forward) |
715 | return; |
716 | |
717 | fast_forward = !fast_forward; |
718 | if (fast_forward) { |
719 | normal_g_opts = g_opts; |
720 | normal_frameskip = pl_rearmed_cbs.frameskip; |
721 | normal_enhancement_enable = |
722 | pl_rearmed_cbs.gpu_neon.enhancement_enable; |
723 | |
724 | g_opts |= OPT_NO_FRAMELIM; |
725 | pl_rearmed_cbs.frameskip = 3; |
726 | pl_rearmed_cbs.gpu_neon.enhancement_enable = 0; |
727 | } else { |
728 | g_opts = normal_g_opts; |
729 | pl_rearmed_cbs.frameskip = normal_frameskip; |
730 | pl_rearmed_cbs.gpu_neon.enhancement_enable = |
731 | normal_enhancement_enable; |
732 | |
733 | pl_timing_prepare(Config.PsxType); |
734 | } |
735 | |
736 | if (!force_off) |
737 | snprintf(hud_msg, sizeof(hud_msg), "FAST FORWARD %s", |
738 | fast_forward ? "ON" : "OFF"); |
739 | } |
ee1a37fd |
740 | |
741 | static void SignalExit(int sig) { |
742 | // only to restore framebuffer/resolution on some devices |
743 | plat_finish(); |
744 | exit(1); |
745 | } |
38c2028e |
746 | #endif |
80c2304e |
747 | |
748 | void SysRunGui() { |
749 | printf("SysRunGui\n"); |
750 | } |
751 | |
78de2879 |
752 | static void CALLBACK dummy_lace() |
e6eb2066 |
753 | { |
754 | } |
755 | |
80c2304e |
756 | void SysReset() { |
e6eb2066 |
757 | // rearmed hack: EmuReset() runs some code when real BIOS is used, |
758 | // but we usually do reset from menu while GPU is not open yet, |
759 | // so we need to prevent updateLace() call.. |
760 | void *real_lace = GPU_updateLace; |
761 | GPU_updateLace = dummy_lace; |
69e482e3 |
762 | g_emu_resetting = 1; |
e6eb2066 |
763 | |
33400707 |
764 | // reset can run code, timing must be set |
765 | pl_timing_prepare(Config.PsxType); |
766 | |
76e889bc |
767 | // hmh core forgets this |
bd6267e6 |
768 | CDR_stop(); |
76e889bc |
769 | |
770 | EmuReset(); |
e6eb2066 |
771 | |
772 | GPU_updateLace = real_lace; |
69e482e3 |
773 | g_emu_resetting = 0; |
80c2304e |
774 | } |
775 | |
776 | void SysClose() { |
777 | EmuShutdown(); |
778 | ReleasePlugins(); |
779 | |
780 | StopDebugger(); |
781 | |
69e482e3 |
782 | if (emuLog != NULL && emuLog != stdout && emuLog != stderr) { |
783 | fclose(emuLog); |
784 | emuLog = NULL; |
785 | } |
80c2304e |
786 | } |
787 | |
788 | void SysUpdate() { |
80c2304e |
789 | } |
790 | |
c5061935 |
791 | int get_state_filename(char *buf, int size, int i) { |
29a8c4f3 |
792 | return get_gameid_filename(buf, size, |
793 | "." STATES_DIR "%.32s-%.9s.%3.3d", i); |
80c2304e |
794 | } |
795 | |
8f892648 |
796 | int emu_check_state(int slot) |
797 | { |
798 | char fname[MAXPATHLEN]; |
799 | int ret; |
800 | |
801 | ret = get_state_filename(fname, sizeof(fname), slot); |
802 | if (ret != 0) |
803 | return ret; |
804 | |
805 | return CheckState(fname); |
806 | } |
807 | |
808 | int emu_save_state(int slot) |
809 | { |
810 | char fname[MAXPATHLEN]; |
811 | int ret; |
812 | |
813 | ret = get_state_filename(fname, sizeof(fname), slot); |
814 | if (ret != 0) |
815 | return ret; |
816 | |
90f1d26c |
817 | ret = SaveState(fname); |
12367ad0 |
818 | #if defined(HAVE_PRE_ARMV7) && !defined(_3DS) && !defined(__SWITCH__) /* XXX GPH hack */ |
0b1dbe6b |
819 | sync(); |
820 | #endif |
f29fbd53 |
821 | SysPrintf("* %s \"%s\" [%d]\n", |
822 | ret == 0 ? "saved" : "failed to save", fname, slot); |
90f1d26c |
823 | return ret; |
8f892648 |
824 | } |
825 | |
826 | int emu_load_state(int slot) |
827 | { |
828 | char fname[MAXPATHLEN]; |
829 | int ret; |
830 | |
dde7da71 |
831 | hud_msg[0] = 0; |
832 | |
8f892648 |
833 | ret = get_state_filename(fname, sizeof(fname), slot); |
834 | if (ret != 0) |
835 | return ret; |
836 | |
837 | return LoadState(fname); |
838 | } |
839 | |
130984f5 |
840 | #ifndef HAVE_LIBRETRO |
45b97ede |
841 | #ifndef ANDROID |
842 | |
80c2304e |
843 | void SysPrintf(const char *fmt, ...) { |
844 | va_list list; |
80c2304e |
845 | |
846 | va_start(list, fmt); |
f29fbd53 |
847 | vfprintf(emuLog, fmt, list); |
80c2304e |
848 | va_end(list); |
82fe9e47 |
849 | fflush(emuLog); |
80c2304e |
850 | } |
851 | |
45b97ede |
852 | #else |
853 | |
854 | #include <android/log.h> |
855 | |
856 | void SysPrintf(const char *fmt, ...) { |
857 | va_list list; |
858 | |
859 | va_start(list, fmt); |
860 | __android_log_vprint(ANDROID_LOG_INFO, "PCSX", fmt, list); |
861 | va_end(list); |
862 | } |
863 | |
864 | #endif |
130984f5 |
865 | #endif /* HAVE_LIBRETRO */ |
45b97ede |
866 | |
80c2304e |
867 | void SysMessage(const char *fmt, ...) { |
45b97ede |
868 | va_list list; |
869 | char msg[512]; |
870 | int ret; |
80c2304e |
871 | |
45b97ede |
872 | va_start(list, fmt); |
873 | ret = vsnprintf(msg, sizeof(msg), fmt, list); |
874 | va_end(list); |
80c2304e |
875 | |
45b97ede |
876 | if (ret < sizeof(msg) && msg[ret - 1] == '\n') |
877 | msg[ret - 1] = 0; |
80c2304e |
878 | |
f29fbd53 |
879 | SysPrintf("%s\n", msg); |
80c2304e |
880 | } |
881 | |
c5061935 |
882 | #define PARSEPATH(dst, src) \ |
883 | ptr = src + strlen(src); \ |
884 | while (*ptr != '\\' && ptr != src) ptr--; \ |
885 | if (ptr != src) { \ |
886 | strcpy(dst, ptr+1); \ |
887 | } |
888 | |
889 | static int _OpenPlugins(void) { |
890 | int ret; |
891 | |
ee1a37fd |
892 | #ifndef NO_FRONTEND |
c5061935 |
893 | signal(SIGINT, SignalExit); |
894 | signal(SIGPIPE, SignalExit); |
ee1a37fd |
895 | #endif |
c5061935 |
896 | |
897 | GPU_clearDynarec(clearDynarec); |
898 | |
899 | ret = CDR_open(); |
900 | if (ret < 0) { SysMessage(_("Error opening CD-ROM plugin!")); return -1; } |
901 | ret = SPU_open(); |
902 | if (ret < 0) { SysMessage(_("Error opening SPU plugin!")); return -1; } |
903 | SPU_registerCallback(SPUirq); |
2b30c129 |
904 | SPU_registerScheduleCb(SPUschedule); |
c5061935 |
905 | // pcsx-rearmed: we handle gpu elsewhere |
906 | //ret = GPU_open(&gpuDisp, "PCSX", NULL); |
907 | //if (ret < 0) { SysMessage(_("Error opening GPU plugin!")); return -1; } |
908 | ret = PAD1_open(&gpuDisp); |
909 | if (ret < 0) { SysMessage(_("Error opening Controller 1 plugin!")); return -1; } |
910 | ret = PAD2_open(&gpuDisp); |
911 | if (ret < 0) { SysMessage(_("Error opening Controller 2 plugin!")); return -1; } |
912 | |
913 | if (Config.UseNet && !NetOpened) { |
914 | netInfo info; |
13fab97c |
915 | char path[MAXPATHLEN * 2]; |
c5061935 |
916 | char dotdir[MAXPATHLEN]; |
917 | |
918 | MAKE_PATH(dotdir, "/.pcsx/plugins/", NULL); |
919 | |
38c2028e |
920 | strcpy(info.EmuName, "PCSX"); |
4b7da20a |
921 | memcpy(info.CdromID, CdromId, 9); /* no \0 trailing character? */ |
922 | memcpy(info.CdromLabel, CdromLabel, 9); |
923 | info.CdromLabel[9] = '\0'; |
c5061935 |
924 | info.psxMem = psxM; |
925 | info.GPU_showScreenPic = GPU_showScreenPic; |
926 | info.GPU_displayText = GPU_displayText; |
927 | info.GPU_showScreenPic = GPU_showScreenPic; |
928 | info.PAD_setSensitive = PAD1_setSensitive; |
929 | sprintf(path, "%s%s", Config.BiosDir, Config.Bios); |
930 | strcpy(info.BIOSpath, path); |
931 | strcpy(info.MCD1path, Config.Mcd1); |
932 | strcpy(info.MCD2path, Config.Mcd2); |
933 | sprintf(path, "%s%s", dotdir, Config.Gpu); |
934 | strcpy(info.GPUpath, path); |
935 | sprintf(path, "%s%s", dotdir, Config.Spu); |
936 | strcpy(info.SPUpath, path); |
937 | sprintf(path, "%s%s", dotdir, Config.Cdr); |
938 | strcpy(info.CDRpath, path); |
939 | NET_setInfo(&info); |
940 | |
941 | ret = NET_open(&gpuDisp); |
942 | if (ret < 0) { |
943 | if (ret == -2) { |
944 | // -2 is returned when something in the info |
945 | // changed and needs to be synced |
946 | char *ptr; |
947 | |
948 | PARSEPATH(Config.Bios, info.BIOSpath); |
949 | PARSEPATH(Config.Gpu, info.GPUpath); |
950 | PARSEPATH(Config.Spu, info.SPUpath); |
951 | PARSEPATH(Config.Cdr, info.CDRpath); |
952 | |
953 | strcpy(Config.Mcd1, info.MCD1path); |
954 | strcpy(Config.Mcd2, info.MCD2path); |
955 | return -2; |
956 | } else { |
957 | Config.UseNet = FALSE; |
958 | } |
959 | } else { |
960 | if (NET_queryPlayer() == 1) { |
961 | if (SendPcsxInfo() == -1) Config.UseNet = FALSE; |
962 | } else { |
963 | if (RecvPcsxInfo() == -1) Config.UseNet = FALSE; |
964 | } |
965 | } |
966 | NetOpened = TRUE; |
967 | } else if (Config.UseNet) { |
968 | NET_resume(); |
969 | } |
970 | |
971 | return 0; |
972 | } |
973 | |
974 | int OpenPlugins() { |
975 | int ret; |
976 | |
977 | while ((ret = _OpenPlugins()) == -2) { |
978 | ReleasePlugins(); |
979 | LoadMcds(Config.Mcd1, Config.Mcd2); |
980 | if (LoadPlugins() == -1) return -1; |
981 | } |
982 | return ret; |
983 | } |
984 | |
985 | void ClosePlugins() { |
986 | int ret; |
987 | |
ee1a37fd |
988 | #ifndef NO_FRONTEND |
c5061935 |
989 | signal(SIGINT, SIG_DFL); |
990 | signal(SIGPIPE, SIG_DFL); |
ee1a37fd |
991 | #endif |
992 | |
c5061935 |
993 | ret = CDR_close(); |
994 | if (ret < 0) { SysMessage(_("Error closing CD-ROM plugin!")); return; } |
995 | ret = SPU_close(); |
996 | if (ret < 0) { SysMessage(_("Error closing SPU plugin!")); return; } |
997 | ret = PAD1_close(); |
998 | if (ret < 0) { SysMessage(_("Error closing Controller 1 Plugin!")); return; } |
999 | ret = PAD2_close(); |
1000 | if (ret < 0) { SysMessage(_("Error closing Controller 2 plugin!")); return; } |
1001 | // pcsx-rearmed: we handle gpu elsewhere |
1002 | //ret = GPU_close(); |
1003 | //if (ret < 0) { SysMessage(_("Error closing GPU plugin!")); return; } |
1004 | |
1005 | if (Config.UseNet) { |
1006 | NET_pause(); |
1007 | } |
1008 | } |
1009 | |
e906c010 |
1010 | /* we hook statically linked plugins here */ |
1011 | static const char *builtin_plugins[] = { |
47bf65ab |
1012 | "builtin_gpu", "builtin_spu", "builtin_cdr", "builtin_pad", |
1013 | "builtin_cdrcimg", |
e906c010 |
1014 | }; |
1015 | |
1016 | static const int builtin_plugin_ids[] = { |
1017 | PLUGIN_GPU, PLUGIN_SPU, PLUGIN_CDR, PLUGIN_PAD, |
47bf65ab |
1018 | PLUGIN_CDRCIMG, |
e906c010 |
1019 | }; |
1020 | |
80c2304e |
1021 | void *SysLoadLibrary(const char *lib) { |
e906c010 |
1022 | const char *tmp = strrchr(lib, '/'); |
003cfc63 |
1023 | void *ret = NULL; |
e906c010 |
1024 | int i; |
1025 | |
f29fbd53 |
1026 | SysPrintf("plugin: %s\n", lib); |
bbd837c6 |
1027 | |
e906c010 |
1028 | if (tmp != NULL) { |
1029 | tmp++; |
1030 | for (i = 0; i < ARRAY_SIZE(builtin_plugins); i++) |
1031 | if (strcmp(tmp, builtin_plugins[i]) == 0) |
2d724e28 |
1032 | return (void *)(uintptr_t)(PLUGIN_DL_BASE + builtin_plugin_ids[i]); |
e906c010 |
1033 | } |
1034 | |
c4052f4d |
1035 | #if !defined(_WIN32) && !defined(NO_DYLIB) |
bbd837c6 |
1036 | ret = dlopen(lib, RTLD_NOW); |
1037 | if (ret == NULL) |
f29fbd53 |
1038 | SysMessage("dlopen: %s", dlerror()); |
003cfc63 |
1039 | #else |
1040 | /* no external plugin support, abi is no longer |
1041 | * compatible with psemu/pcsx anyway */ |
1042 | #endif |
bbd837c6 |
1043 | return ret; |
80c2304e |
1044 | } |
1045 | |
1046 | void *SysLoadSym(void *lib, const char *sym) { |
2d724e28 |
1047 | unsigned int plugid = (unsigned int)(uintptr_t)lib; |
e906c010 |
1048 | |
1049 | if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins)) |
1050 | return plugin_link(plugid - PLUGIN_DL_BASE, sym); |
1051 | |
c4052f4d |
1052 | #if !defined(_WIN32) && !defined(NO_DYLIB) |
80c2304e |
1053 | return dlsym(lib, sym); |
003cfc63 |
1054 | #else |
1055 | return NULL; |
1056 | #endif |
80c2304e |
1057 | } |
1058 | |
1059 | const char *SysLibError() { |
c4052f4d |
1060 | #if defined(NO_DYLIB) |
fc99395c |
1061 | return NULL; |
1062 | #elif !defined(_WIN32) |
80c2304e |
1063 | return dlerror(); |
003cfc63 |
1064 | #else |
1065 | return "not supported"; |
1066 | #endif |
80c2304e |
1067 | } |
1068 | |
1069 | void SysCloseLibrary(void *lib) { |
2d724e28 |
1070 | unsigned int plugid = (unsigned int)(uintptr_t)lib; |
e906c010 |
1071 | |
1072 | if (PLUGIN_DL_BASE <= plugid && plugid < PLUGIN_DL_BASE + ARRAY_SIZE(builtin_plugins)) |
1073 | return; |
1074 | |
c4052f4d |
1075 | #if !defined(_WIN32) && !defined(NO_DYLIB) |
80c2304e |
1076 | dlclose(lib); |
003cfc63 |
1077 | #endif |
80c2304e |
1078 | } |