forked from dolphin-emu/dolphin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cpp
More file actions
711 lines (583 loc) · 23.9 KB
/
Copy pathMain.cpp
File metadata and controls
711 lines (583 loc) · 23.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
#include <cstdint>
#include <libretro.h>
#include <string>
#include <thread>
#include <fstream>
#include <vector>
#include "AudioCommon/AudioCommon.h"
#include "Common/ChunkFile.h"
#include "Common/Event.h"
#include "Common/IniFile.h"
#include "Common/FileUtil.h"
#include "Common/GL/GLContext.h"
#include "Common/Logging/LogManager.h"
#include "Common/Thread.h"
#include "Common/scmrev.h"
#include "Common/Version.h"
#include "Core/ActionReplay.h"
#include "Core/BootManager.h"
#include "Core/Config/GraphicsSettings.h"
#include "Core/Config/MainSettings.h"
#include "Core/Config/SYSCONFSettings.h"
#include "Core/ConfigManager.h"
#include "Core/Core.h"
#include "Core/GeckoCode.h"
#include "Core/GeckoCodeConfig.h"
#include "Core/HW/CPU.h"
#include "Core/HW/Memmap.h"
#include "Core/HW/ProcessorInterface.h"
#include "Core/HW/VideoInterface.h"
#include "Core/HW/WiimoteReal/WiimoteReal.h"
#include "Core/IOS/USB/Emulated/Microphone.h"
#include "Core/PatchEngine.h"
#include "Core/State.h"
#include "Core/System.h"
#include "DolphinLibretro/Audio.h"
#include "DolphinLibretro/Input.h"
#include "DolphinLibretro/Common/Options.h"
#include "DolphinLibretro/Video.h"
#include "VideoBackends/OGL/OGLTexture.h"
#include "VideoBackends/OGL/OGLGfx.h"
#include "VideoCommon/AsyncRequests.h"
#include "VideoCommon/Fifo.h"
#include "VideoCommon/OnScreenDisplay.h"
#include "VideoCommon/TextureConfig.h"
#include "VideoCommon/VideoCommon.h"
#include "VideoCommon/VideoConfig.h"
#include "VideoCommon/Widescreen.h"
#include "Core/Boot/Boot.h"
#ifdef PERF_TEST
static struct retro_perf_callback perf_cb;
#define RETRO_PERFORMANCE_INIT(name) \
retro_perf_tick_t current_ticks; \
static struct retro_perf_counter name = {#name}; \
if (!name.registered) \
perf_cb.perf_register(&(name)); \
current_ticks = name.total
#define RETRO_PERFORMANCE_START(name) perf_cb.perf_start(&(name))
#define RETRO_PERFORMANCE_STOP(name) \
perf_cb.perf_stop(&(name)); \
current_ticks = name.total - current_ticks;
#else
#define RETRO_PERFORMANCE_INIT(name)
#define RETRO_PERFORMANCE_START(name)
#define RETRO_PERFORMANCE_STOP(name)
#endif
namespace Libretro
{
extern retro_environment_t environ_cb;
static bool widescreen;
double g_core_refresh_rate{0};
// Reset per game (see retro_run): the first refresh-rate settle after boot must not
// trigger a mode-family reinit, only a real in-game 50<->60 switch should.
static bool s_refresh_rate_settled = false;
extern void reload_cheats_from_ini();
} // namespace Libretro
extern "C" {
void retro_set_environment(retro_environment_t cb)
{
Libretro::environ_cb = cb;
#ifdef PERF_TEST
environ_cb(RETRO_ENVIRONMENT_GET_PERF_INTERFACE, &perf_cb);
#endif
static const struct retro_subsystem_memory_info gbp_gba_memory[] = {
{"srm", RETRO_MEMORY_SAVE_RAM},
};
static const struct retro_subsystem_rom_info gbp_roms[] = {
{"GBA ROM", "gba|gbc|gb|zip|7z",
true,
true,
false,
gbp_gba_memory, 1},
{"GameCube Disc", "rvz|gcm|iso|ciso|wbfs|gcz|tgc|m3u",
true,
false,
true,
nullptr, 0},
};
static const struct retro_subsystem_info subsystems[] = {
{
"Game Boy Player",
"GBP",
gbp_roms, 2,
Libretro::g_gbplayer_subsystem_id
},
{nullptr, nullptr, nullptr, 0, 0}};
cb(RETRO_ENVIRONMENT_SET_SUBSYSTEM_INFO, (void*)subsystems);
}
void retro_init(void)
{
enum retro_pixel_format xrgb888 = RETRO_PIXEL_FORMAT_XRGB8888;
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_PIXEL_FORMAT, &xrgb888);
}
void retro_deinit(void)
{
Libretro::g_emuthread_launched = false;
#ifdef PERF_TEST
perf_cb.perf_log();
#endif
}
void retro_get_system_info(retro_system_info* info)
{
// Build a semver string from SCM_DESC_STR (e.g. "2512-226" -> "2512.0.226")
// with the short git hash as build metadata (e.g. "+13192dec3d")
static std::string version_str = []() {
std::string desc = SCM_DESC_STR;
std::string major, commits;
auto dash = desc.find('-');
if (dash != std::string::npos)
{
major = desc.substr(0, dash);
auto dash2 = desc.find('-', dash + 1);
commits = (dash2 != std::string::npos)
? desc.substr(dash + 1, dash2 - dash - 1)
: desc.substr(dash + 1);
}
else
{
major = desc;
commits = "0";
}
std::string hash = SCM_REV_STR;
if (hash.size() > 10)
hash = hash.substr(0, 10);
return major + ".0." + commits + "+" + hash;
}();
info->need_fullpath = true;
info->valid_extensions = "elf|dol|gcm|iso|tgc|wbfs|ciso|gcz|wad|wia|rvz|m3u";
info->library_version = version_str.c_str();
info->library_name = "dolphin-emu";
info->block_extract = true;
}
void retro_get_system_av_info(retro_system_av_info* info)
{
int efbScale = Libretro::Options::GetCached<int>(
Libretro::Options::gfx_settings::EFB_SCALE);
int base_height = Libretro::Video::GetAdjustedBaseHeight();
// Fixed max (>= any runtime height) so base can grow via SET_GEOMETRY alone.
int max_height = base_height > 576 ? base_height : 576;
info->geometry.base_width = EFB_WIDTH * efbScale;
info->geometry.base_height = base_height * efbScale;
info->geometry.max_width = EFB_WIDTH * efbScale;
info->geometry.max_height = max_height * efbScale;
if (g_widescreen)
Libretro::widescreen = g_widescreen->IsGameWidescreen() || g_Config.bWidescreenHack;
else if (Core::System::GetInstance().IsWii())
Libretro::widescreen = Config::Get(Config::SYSCONF_WIDESCREEN);
info->geometry.aspect_ratio = Libretro::widescreen ? 16.0 / 9.0 : 4.0 / 3.0;
Core::System& system = Core::System::GetInstance();
double fps = system.GetVideoInterface().GetTargetRefreshRate();
if (fps <= 0.0)
fps = (retro_get_region() == RETRO_REGION_NTSC) ? (60.0 / 1.001) : 50.0;
info->timing.fps = fps;
info->timing.sample_rate = Libretro::Audio::GetActiveSampleRate();
}
void retro_reset(void)
{
Core::System::GetInstance().GetProcessorInterface().ResetButton_Tap();
}
void retro_run(void)
{
Libretro::Input::InitSensors();
Libretro::Options::CheckForUpdatedVariables();
Libretro::FrameTiming::CheckForFastForwarding();
if (Libretro::Options::IsUpdated(Libretro::Options::main_interface::LOG_LEVEL))
{
#if defined(_DEBUG)
Common::Log::LogManager::GetInstance()->SetConfigLogLevel(Common::Log::LogLevel::LDEBUG);
#else
Common::Log::LogManager::GetInstance()->SetConfigLogLevel(
static_cast<Common::Log::LogLevel>(
Libretro::Options::GetCached<int>(
Libretro::Options::main_interface::LOG_LEVEL, static_cast<int>(Common::Log::LogLevel::LINFO))));
#endif
}
if (Libretro::Options::IsUpdated(Libretro::Options::core::CPU_CLOCK_RATE))
{
double cpuClock = Libretro::Options::GetCached<double>(
Libretro::Options::core::CPU_CLOCK_RATE);
Config::SetCurrent(Config::MAIN_OVERCLOCK, cpuClock);
Config::SetCurrent(Config::MAIN_OVERCLOCK_ENABLE, cpuClock != 1.0);
}
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_settings::WIDESCREEN_HACK))
{
g_Config.bWidescreenHack = Libretro::Options::GetCached<bool>(
Libretro::Options::gfx_settings::WIDESCREEN_HACK);
}
// Crop to 4:3 when advertising 480-line geometry (NTSC / PAL60), tracked per frame.
g_Config.bCropToAspectRatio = (Libretro::Video::GetAdjustedBaseHeight() == 480);
Libretro::Input::Update();
Core::System& system = Core::System::GetInstance();
if (Core::GetState(system) == Core::State::Starting &&
!Libretro::g_emuthread_launched)
{
WindowSystemInfo wsi(WindowSystemType::Libretro, nullptr, nullptr, nullptr);
if (system.IsDualCoreMode())
{
Core::s_emu_thread = std::thread(Core::EmuThread,
std::ref(system), std::move(Core::g_boot_params), wsi);
// Wait until CPU thread has reached Run()
auto& cpu_manager = system.GetCPU();
while (!cpu_manager.HasCPURunStateBeenReached())
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
else
Core::EmuThread(system, std::move(Core::g_boot_params), wsi);
Libretro::g_emuthread_launched = true;
if(Config::Get(Config::MAIN_GFX_BACKEND) == "Software Renderer")
{
g_gfx.reset();
g_gfx = std::make_unique<Libretro::Video::SWGfx>();
}
else if (Config::Get(Config::MAIN_GFX_BACKEND) == "Null")
{
g_gfx.reset();
g_gfx = std::make_unique<Libretro::Video::NullGfx>();
}
while (!Core::IsRunningOrStarting(system))
Common::SleepCurrentThread(100);
Libretro::g_core_refresh_rate = system.GetVideoInterface().GetTargetRefreshRate();
Libretro::s_refresh_rate_settled = false;
// Expose GameCube and Wii memory maps to libretro
{
auto& memory = system.GetMemory();
struct retro_memory_descriptor descs[2] = {};
unsigned num_descs = 0;
descs[num_descs].ptr = memory.GetRAM();
descs[num_descs].start = 0x80000000;
descs[num_descs].len = memory.GetRamSizeReal();
descs[num_descs].flags = RETRO_MEMDESC_BIGENDIAN | RETRO_MEMORY_SYSTEM_RAM;
descs[num_descs].addrspace = "MEM1";
num_descs++;
if (system.IsWii())
{
descs[num_descs].ptr = memory.GetEXRAM();
descs[num_descs].start = 0x90000000;
descs[num_descs].len = memory.GetExRamSizeReal();
descs[num_descs].flags = RETRO_MEMDESC_BIGENDIAN | RETRO_MEMORY_SYSTEM_RAM;
descs[num_descs].addrspace = "MEM2";
num_descs++;
}
struct retro_memory_map mmap = {descs, num_descs};
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_MEMORY_MAPS, &mmap);
}
}
if(!Libretro::g_emuthread_launched)
{
DEBUG_LOG_FMT(BOOT, "retro_run() - waiting for g_emuthread_launched");
return;
}
if (g_gfx && Config::Get(Config::MAIN_GFX_BACKEND) == "OGL")
{
static_cast<OGL::OGLGfx*>(g_gfx.get())
->SetSystemFrameBuffer((GLuint)Libretro::Video::hw_render.get_current_framebuffer());
}
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_settings::EFB_SCALE))
{
g_Config.iEFBScale = Libretro::Options::GetCached<int>(
Libretro::Options::gfx_settings::EFB_SCALE);
unsigned cmd = RETRO_ENVIRONMENT_SET_SYSTEM_AV_INFO;
if (Libretro::Video::hw_render.context_type == RETRO_HW_CONTEXT_D3D11 ||
Libretro::Video::hw_render.context_type == RETRO_HW_CONTEXT_D3D12)
cmd = RETRO_ENVIRONMENT_SET_GEOMETRY;
retro_system_av_info info;
retro_get_system_av_info(&info);
Libretro::environ_cb(cmd, &info);
}
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_settings::CROP_OVERSCAN))
{
retro_system_av_info info;
retro_get_system_av_info(&info);
// SET_GEOMETRY, not SET_SYSTEM_AV_INFO: the reinit would drop KMS to 240p.
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_GEOMETRY, &info);
}
if (g_widescreen &&
Libretro::widescreen != (g_widescreen->IsGameWidescreen() || g_Config.bWidescreenHack))
{
retro_system_av_info info;
retro_get_system_av_info(&info);
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_GEOMETRY, &info);
}
// target refresh rate has changed - e.g. user has chosen 60 Hz for a PAL game
double new_rate = system.GetVideoInterface().GetTargetRefreshRate();
if (round(Libretro::g_core_refresh_rate * 1e6) != round(new_rate * 1e6))
{
const double old_rate = Libretro::g_core_refresh_rate;
NOTICE_LOG_FMT(VIDEO, "Target refresh rate changed: {:.4f} Hz -> {:.4f} Hz",
old_rate, new_rate);
Libretro::g_core_refresh_rate = new_rate;
// Re-pace the audio-callback frame timing to the new rate (PAL60 50->60).
if (Libretro::FrameTiming::IsEnabled() && new_rate > 1.0)
Libretro::FrameTiming::target_frame_duration_usec.store(
static_cast<retro_usec_t>(lround(1e6 / new_rate)), std::memory_order_relaxed);
retro_system_av_info info;
retro_get_system_av_info(&info);
// 50<->60 switch needs a new CRT mode family: only SET_SYSTEM_AV_INFO carries
// the fps switchres uses, then SET_GEOMETRY rebuilds the surface its reinit drops.
// First settle after boot keeps the initial mode, so geometry-only (no reinit flash).
const bool crosses_50_60 =
Libretro::s_refresh_rate_settled && ((old_rate > 55.0) != (new_rate > 55.0));
Libretro::s_refresh_rate_settled = true;
if (crosses_50_60)
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_SYSTEM_AV_INFO, &info);
Libretro::environ_cb(RETRO_ENVIRONMENT_SET_GEOMETRY, &info);
}
WiimoteUpdateFlags flags;
if (system.IsWii())
{
flags.irMode = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_MODE);
flags.irOffset = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_OFFSET);
flags.irYaw = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_YAW);
flags.irPitch = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_PITCH);
flags.irDeadzone = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_DEADZONE);
flags.irModifier = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_MODIFIER);
flags.swingModifier = Libretro::Options::IsUpdated(Libretro::Options::wiimote::SWING_MODIFIER);
flags.swingAngle = Libretro::Options::IsUpdated(Libretro::Options::wiimote::SWING_ANGLE);
flags.sideways = Libretro::Options::IsUpdated(Libretro::Options::wiimote::HOTKEY_SIDEWAYS_TOGGLE);
flags.irPassthrough = Libretro::Options::IsUpdated(Libretro::Options::wiimote::IR_PASSTHROUGH);
}
flags.rumble = Libretro::Options::IsUpdated(Libretro::Options::sysconf::ENABLE_RUMBLE);
flags.gcMicBtn = Libretro::Options::IsUpdated(Libretro::Options::sysconf_gc::HOTKEY_ACTIVATE_MICROPHONE);
if (flags.any())
Libretro::Input::ResetControllers(flags);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_settings::ASPECT_RATIO))
Config::SetCurrent(
Config::GFX_ASPECT_RATIO, static_cast<AspectMode>(
Libretro::GetOption<int>(
Libretro::Options::gfx_settings::ASPECT_RATIO, static_cast<int>(AspectMode::Stretch)
)
)
);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_TO_TEXTURE))
g_Config.bSkipEFBCopyToRam = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_TO_TEXTURE, true);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_ACCESS_ENABLE))
g_Config.bEFBAccessEnable = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_ACCESS_ENABLE, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_ACCESS_DEFER_INVALIDATION))
g_Config.bEFBAccessDeferInvalidation = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_ACCESS_DEFER_INVALIDATION, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_ACCESS_TILE_SIZE))
g_Config.iEFBAccessTileSize = Libretro::Options::GetCached<int>(Libretro::Options::gfx_hacks::EFB_ACCESS_TILE_SIZE, 64);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::BBOX_ENABLED))
g_Config.bBBoxEnable = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::BBOX_ENABLED, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::XFB_TO_TEXTURE_ENABLE))
g_Config.bSkipXFBCopyToRam = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::XFB_TO_TEXTURE_ENABLE, true);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_TO_VRAM))
g_Config.bDisableCopyToVRAM = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_TO_VRAM, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::DEFER_EFB_COPIES))
g_Config.bDeferEFBCopies = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::DEFER_EFB_COPIES, true);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::IMMEDIATE_XFB))
g_Config.bImmediateXFB = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::IMMEDIATE_XFB, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::SKIP_DUPE_FRAMES))
g_Config.bSkipPresentingDuplicateXFBs = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::SKIP_DUPE_FRAMES, true);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_SCALED_COPY))
g_Config.bCopyEFBScaled = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_SCALED_COPY, true);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::EFB_EMULATE_FORMAT_CHANGES))
g_Config.bEFBEmulateFormatChanges = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::EFB_EMULATE_FORMAT_CHANGES, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::VERTEX_ROUNDING))
g_Config.bVertexRounding = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::VERTEX_ROUNDING, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::VI_SKIP))
g_Config.bVISkip = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::VI_SKIP, false);
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::FAST_TEXTURE_SAMPLING))
g_Config.bFastTextureSampling = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::FAST_TEXTURE_SAMPLING, true);
#ifdef __APPLE__
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_hacks::NO_MIPMAPPING))
g_Config.bNoMipmapping = Libretro::Options::GetCached<bool>(Libretro::Options::gfx_hacks::NO_MIPMAPPING, false);
#endif
if (Libretro::Options::IsUpdated(Libretro::Options::gfx_settings::TEXTURE_CACHE_ACCURACY))
g_Config.iSafeTextureCache_ColorSamples = Libretro::Options::GetCached<int>(Libretro::Options::gfx_settings::TEXTURE_CACHE_ACCURACY, 128);
if (Libretro::Options::IsUpdated(Libretro::Options::sysconf::WII_SPEAK_MUTED))
Config::SetCurrent(Config::MAIN_WII_SPEAK_MUTED,
Libretro::Options::GetCached<bool>(Libretro::Options::sysconf::WII_SPEAK_MUTED));
if (Libretro::Options::IsUpdated(Libretro::Options::sysconf::WIIMOTE_CONTINUOUS_SCANNING))
{
Config::SetCurrent(Config::MAIN_WIIMOTE_CONTINUOUS_SCANNING,
Libretro::Options::GetCached<bool>(Libretro::Options::sysconf::WIIMOTE_CONTINUOUS_SCANNING));
WiimoteReal::Initialize(Wiimote::InitializeMode::DO_NOT_WAIT_FOR_WIIMOTES);
}
if (Config::Get(Config::MAIN_BLUETOOTH_PASSTHROUGH_ENABLED))
Libretro::Input::BluetoothPassthroughBind();
RETRO_PERFORMANCE_INIT(dolphin_main_func);
RETRO_PERFORMANCE_START(dolphin_main_func);
if (system.IsDualCoreMode())
{
Core::DoFrameStep(system);
system.GetFifo().RunGpuLoop();
}
else
{
system.GetCPU().RunSingleFrame();
}
RETRO_PERFORMANCE_STOP(dolphin_main_func);
if (auto* sound_stream = system.GetSoundStream())
{
auto* libretro_stream = static_cast<Libretro::Audio::Stream*>(sound_stream);
if (libretro_stream)
{
libretro_stream->PushAudioForFrame();
}
}
if (Libretro::Input::g_has_microphone_support)
poll_microphone();
}
size_t retro_serialize_size(void)
{
size_t size = 0;
Core::System& system = Core::System::GetInstance();
AsyncRequests* ar = AsyncRequests::GetInstance();
if (system.IsDualCoreMode())
ar->SetPassthrough(true);
Core::RunOnCPUThread(Core::System::GetInstance(), [&] {
PointerWrap p((u8**)&size, sizeof(size_t), PointerWrap::Mode::Measure);
State::DoState(Core::System::GetInstance(), p);
}, true); // wait = true
if (system.IsDualCoreMode())
ar->SetPassthrough(false);
return size;
}
bool retro_serialize(void* data, size_t size)
{
Core::System& system = Core::System::GetInstance();
AsyncRequests* ar = AsyncRequests::GetInstance();
if (system.IsDualCoreMode())
ar->SetPassthrough(true);
const bool was_cpu = Core::IsCPUThread();
if (!was_cpu)
Core::DeclareAsCPUThread();
Core::RunOnCPUThread(Core::System::GetInstance(), [&] {
PointerWrap p((u8**)&data, size, PointerWrap::Mode::Write);
State::DoState(Core::System::GetInstance(), p);
}, true);
if (!was_cpu)
Core::UndeclareAsCPUThread();
if (system.IsDualCoreMode())
ar->SetPassthrough(false);
return true;
}
bool retro_unserialize(const void* data, size_t size)
{
Core::System& system = Core::System::GetInstance();
AsyncRequests* ar = AsyncRequests::GetInstance();
if (system.IsDualCoreMode())
ar->SetPassthrough(true);
const bool was_cpu = Core::IsCPUThread();
if (!was_cpu)
Core::DeclareAsCPUThread();
Core::RunOnCPUThread(Core::System::GetInstance(), [&] {
PointerWrap p((u8**)&data, size, PointerWrap::Mode::Read);
State::DoState(Core::System::GetInstance(), p);
}, true);
if (!was_cpu)
Core::UndeclareAsCPUThread();
if (system.IsDualCoreMode())
ar->SetPassthrough(false);
return true;
}
unsigned retro_get_region()
{
Core::System& system = Core::System::GetInstance();
if (DiscIO::IsNTSC(SConfig::GetInstance().m_region) ||
(Core::System::GetInstance().IsWii() && Config::Get(Config::SYSCONF_PAL60)) ||
system.IsTriforce())
return RETRO_REGION_NTSC;
return RETRO_REGION_PAL;
}
unsigned retro_api_version()
{
return RETRO_API_VERSION;
}
size_t retro_get_memory_size(unsigned id)
{
auto& memory = Core::System::GetInstance().GetMemory();
if (id == RETRO_MEMORY_SYSTEM_RAM)
return memory.GetRamSizeReal();
return 0;
}
void* retro_get_memory_data(unsigned id)
{
auto& memory = Core::System::GetInstance().GetMemory();
if (id == RETRO_MEMORY_SYSTEM_RAM)
return memory.GetRAM();
return NULL;
}
static void enable_cheat_by_code(bool enabled, const char* code)
{
std::string incoming(code);
bool found = false;
// Match Action Replay codes
for (auto& c : Libretro::g_ar_codes)
{
std::string serialized;
serialized.reserve(64);
for (const auto& op : c.ops)
{
if (!serialized.empty())
serialized += "+";
serialized += fmt::format("{:08X} {:08X}", op.cmd_addr, op.value);
}
if (serialized == incoming)
{
c.enabled = enabled;
found = true;
break;
}
}
// Match Gecko codes only if not already matched
if (!found)
{
for (auto& c : Libretro::g_gecko_codes)
{
std::string serialized;
serialized.reserve(64);
for (const auto& line : c.codes)
{
if (!serialized.empty())
serialized += "+";
serialized += line.original_line;
}
if (serialized == incoming)
{
c.enabled = enabled;
found = true;
break;
}
}
}
}
// reset cheats to off
void retro_cheat_reset(void)
{
const bool importCheats = Libretro::GetOption<bool>(Libretro::Options::retroarch_core::CHEATS_IMPORT, true);
if (!Config::AreCheatsEnabled() || !importCheats)
return;
Core::RunOnCPUThread(Core::System::GetInstance(), [&] {
PatchEngine::Shutdown();
}, true);
Libretro::reload_cheats_from_ini();
}
// Enable/disable a cheat
void retro_cheat_set(unsigned index, bool enabled, const char *code)
{
if (!Config::AreCheatsEnabled())
{
OSD::AddMessage("You cannot apply any cheats until you have enabled the following option:\n"
"Core > Internal Cheats - set this to ON", OSD::Duration::VERY_LONG, OSD::Color::RED);
return;
}
const bool importCheats = Libretro::GetOption<bool>(Libretro::Options::retroarch_core::CHEATS_IMPORT, true);
if (!importCheats)
{
OSD::AddMessage("You cannot apply any cheats until you enabled the following option:\n"
"Core > Automatically Import Cheats into RetroArch - set this to ON", OSD::Duration::VERY_LONG, OSD::Color::RED);
return;
}
const std::string& game_id = SConfig::GetInstance().GetGameID();
const u16 game_revision = SConfig::GetInstance().GetRevision();
// Look up by code as index is unreliable
enable_cheat_by_code(enabled, code);
Core::RunOnCPUThread(Core::System::GetInstance(), [&] {
// Apply Action Replay
ActionReplay::ApplyCodes(Libretro::g_ar_codes, game_id, game_revision);
// Apply Gecko
Gecko::SetActiveCodes(Libretro::g_gecko_codes, game_id, game_revision);
}, true);
}
} // extern "C"