-
Notifications
You must be signed in to change notification settings - Fork 10
/
Plugin.cpp
703 lines (623 loc) · 25.1 KB
/
Plugin.cpp
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
/*
* Project 64 - A Nintendo 64 emulator.
*
* (c) Copyright 2001 zilmar ([email protected]) and
* Jabo ([email protected]).
*
* pj64 homepage: www.pj64.net
*
* Permission to use, copy, modify and distribute Project64 in both binary and
* source form, for non-commercial purposes, is hereby granted without fee,
* providing that this license information and copyright notice appear with
* all copies and any derived work.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event shall the authors be held liable for any damages
* arising from the use of this software.
*
* Project64 is freeware for PERSONAL USE only. Commercial users should
* seek permission of the copyright holders first. Commercial use includes
* charging money for Project64 or software derived from Project64.
*
* The copyright holders request that bug fixes and improvements to the code
* should be forwarded to them so if they want them.
*
*/
#include <windows.h>
#include <stdio.h>
#include "main.h"
#include "CPU.h"
#include "Debugger.h"
#include "plugin.h"
#include "settings.h"
#include "resource.h"
char RspDLL[100], GfxDLL[100], AudioDLL[100],ControllerDLL[100], * PluginNames[MaxDlls];
HINSTANCE hAudioDll, hControllerDll, hGfxDll, hRspDll;
DWORD PluginCount, RspTaskValue, AudioIntrReg;
WORD RSPVersion,ContVersion;
HANDLE hAudioThread = NULL;
GFXDEBUG_INFO GFXDebug;
RSPDEBUG_INFO RspDebug;
CONTROL Controllers[4];
BOOL PluginsInitilized = FALSE;
BOOL PluginsChanged ( HWND hDlg );
BOOL ValidPluginVersion ( PLUGIN_INFO * PluginInfo );
void AudioThread (void) {
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_TIME_CRITICAL );
for (;;) { AiUpdate(TRUE); }
}
void GetCurrentDlls (void) {
long lResult;
HKEY hKeyResults = 0;
char String[200];
sprintf(String,"Software\\N64 Emulation\\%s\\Dll",AppName);
lResult = RegOpenKeyEx( HKEY_CURRENT_USER,String,0, KEY_ALL_ACCESS,&hKeyResults);
if (lResult == ERROR_SUCCESS) {
DWORD Type, Bytes = 100;
lResult = RegQueryValueEx(hKeyResults,"RSP Dll",0,&Type,(LPBYTE)(RspDLL),&Bytes);
if (lResult != ERROR_SUCCESS) {
sprintf(RspDLL,"%s",DefaultRSPDll);
}
Bytes = 100;
lResult = RegQueryValueEx(hKeyResults,"Graphics Dll",0,&Type,(LPBYTE)(GfxDLL),&Bytes);
if (lResult != ERROR_SUCCESS) {
sprintf(GfxDLL,"%s",DefaultGFXDll);
}
Bytes = 100;
lResult = RegQueryValueEx(hKeyResults,"Audio Dll",0,&Type,(LPBYTE)(AudioDLL),&Bytes);
if (lResult != ERROR_SUCCESS) {
sprintf(AudioDLL,"%s",DefaultAudioDll);
}
Bytes = 100;
lResult = RegQueryValueEx(hKeyResults,"Controller Dll",0,&Type,(LPBYTE)(ControllerDLL),&Bytes);
if (lResult != ERROR_SUCCESS) {
sprintf(ControllerDLL,"%s",DefaultControllerDll);
}
} else {
sprintf(RspDLL,"%s",DefaultRSPDll);
sprintf(GfxDLL,"%s",DefaultGFXDll);
sprintf(AudioDLL,"%s",DefaultAudioDll);
sprintf(ControllerDLL,"%s",DefaultControllerDll);
}
}
void GetPluginDir( char * Directory ) {
char path_buffer[_MAX_PATH], drive[_MAX_DRIVE] ,dir[_MAX_DIR];
char fname[_MAX_FNAME],ext[_MAX_EXT];
char Dir[255], Group[200];
long lResult;
HKEY hKeyResults = 0;
GetModuleFileName(NULL,path_buffer,sizeof(path_buffer));
_splitpath( path_buffer, drive, dir, fname, ext );
strcpy(Directory,drive);
strcat(Directory,dir);
strcat(Directory,"Plugin\\");
sprintf(Group,"Software\\N64 Emulation\\%s",AppName);
lResult = RegOpenKeyEx( HKEY_CURRENT_USER,Group,0,KEY_ALL_ACCESS,
&hKeyResults);
if (lResult == ERROR_SUCCESS) {
DWORD Type, Value, Bytes;
Bytes = 4;
lResult = RegQueryValueEx(hKeyResults,"Use Default Plugin Dir",0,&Type,(LPBYTE)(&Value),&Bytes);
if (lResult == ERROR_SUCCESS && Value == FALSE) {
Bytes = sizeof(Dir);
lResult = RegQueryValueEx(hKeyResults,"Plugin Directory",0,&Type,(LPBYTE)Dir,&Bytes);
if (lResult == ERROR_SUCCESS) { strcpy(Directory,Dir); }
}
}
RegCloseKey(hKeyResults);
}
void GetSnapShotDir( char * Directory ) {
char path_buffer[_MAX_PATH], drive[_MAX_DRIVE] ,dir[_MAX_DIR];
char fname[_MAX_FNAME],ext[_MAX_EXT];
char Dir[255], Group[200];
long lResult;
HKEY hKeyResults = 0;
GetModuleFileName(NULL,path_buffer,sizeof(path_buffer));
_splitpath( path_buffer, drive, dir, fname, ext );
sprintf(Directory,"%s%sScreenshots\\",drive,dir);
sprintf(Group,"Software\\N64 Emulation\\%s",AppName);
lResult = RegOpenKeyEx( HKEY_CURRENT_USER,Group,0,KEY_ALL_ACCESS,
&hKeyResults);
if (lResult == ERROR_SUCCESS) {
DWORD Type, Value, Bytes;
Bytes = 4;
lResult = RegQueryValueEx(hKeyResults,"Use Default Snap Shot Dir",0,&Type,(LPBYTE)(&Value),&Bytes);
if (lResult == ERROR_SUCCESS && Value == FALSE) {
Bytes = sizeof(Dir);
lResult = RegQueryValueEx(hKeyResults,"Snap Shot Directory",0,&Type,(LPBYTE)Dir,&Bytes);
if (lResult == ERROR_SUCCESS) { strcpy(Directory,Dir); }
}
}
RegCloseKey(hKeyResults);
}
BOOL LoadAudioDll(char * AudioDll) {
PLUGIN_INFO PluginInfo;
char DllName[300];
GetPluginDir(DllName);
strcat(DllName,AudioDll);
hAudioDll = LoadLibrary(DllName);
if (hAudioDll == NULL) { return FALSE; }
GetDllInfo = (void (__cdecl *)(PLUGIN_INFO *))GetProcAddress( hAudioDll, "GetDllInfo" );
if (GetDllInfo == NULL) { return FALSE; }
GetDllInfo(&PluginInfo);
if (!ValidPluginVersion(&PluginInfo) || PluginInfo.MemoryBswaped == FALSE) { return FALSE; }
AiCloseDLL = (void (__cdecl *)(void))GetProcAddress( hAudioDll, "CloseDLL" );
if (AiCloseDLL == NULL) { return FALSE; }
AiDacrateChanged = (void (__cdecl *)(int))GetProcAddress( hAudioDll, "AiDacrateChanged" );
if (AiDacrateChanged == NULL) { return FALSE; }
AiLenChanged = (void (__cdecl *)(void))GetProcAddress( hAudioDll, "AiLenChanged" );
if (AiLenChanged == NULL) { return FALSE; }
AiReadLength = (DWORD (__cdecl *)(void))GetProcAddress( hAudioDll, "AiReadLength" );
if (AiReadLength == NULL) { return FALSE; }
InitiateAudio = (BOOL (__cdecl *)(AUDIO_INFO))GetProcAddress( hAudioDll, "InitiateAudio" );
if (InitiateAudio == NULL) { return FALSE; }
AiRomClosed = (void (__cdecl *)(void))GetProcAddress( hAudioDll, "RomClosed" );
if (AiRomClosed == NULL) { return FALSE; }
ProcessAList = (void (__cdecl *)(void))GetProcAddress( hAudioDll, "ProcessAList" );
if (ProcessAList == NULL) { return FALSE; }
AiDllConfig = (void (__cdecl *)(HWND))GetProcAddress( hAudioDll, "DllConfig" );
AiUpdate = (void (__cdecl *)(BOOL))GetProcAddress( hAudioDll, "AiUpdate" );
return TRUE;
}
BOOL LoadControllerDll(char * ControllerDll) {
PLUGIN_INFO PluginInfo;
char DllName[300];
GetPluginDir(DllName);
strcat(DllName,ControllerDll);
hControllerDll = LoadLibrary(DllName);
if (hControllerDll == NULL) { return FALSE; }
GetDllInfo = (void (__cdecl *)(PLUGIN_INFO *))GetProcAddress( hControllerDll, "GetDllInfo" );
if (GetDllInfo == NULL) { return FALSE; }
GetDllInfo(&PluginInfo);
if (!ValidPluginVersion(&PluginInfo)|| PluginInfo.MemoryBswaped == FALSE) { return FALSE; }
ContVersion = PluginInfo.Version;
ContCloseDLL = (void (__cdecl *)(void))GetProcAddress( hControllerDll, "CloseDLL" );
if (ContCloseDLL == NULL) { return FALSE; }
if (ContVersion == 0x0100) {
InitiateControllers_1_0 = (void (__cdecl *)(HWND, CONTROL *))GetProcAddress( hControllerDll, "InitiateControllers" );
if (InitiateControllers_1_0 == NULL) { return FALSE; }
}
if (ContVersion == 0x0101) {
InitiateControllers_1_1 = (void (__cdecl *)(CONTROL_INFO))GetProcAddress( hControllerDll, "InitiateControllers" );
if (InitiateControllers_1_1 == NULL) { return FALSE; }
}
ControllerCommand = (void (__cdecl *)(int, BYTE *))GetProcAddress( hControllerDll, "ControllerCommand" );
ReadController = (void (__cdecl *)(int, BYTE *))GetProcAddress( hControllerDll, "ReadController" );
ContConfig = (void (__cdecl *)(HWND))GetProcAddress( hControllerDll, "DllConfig" );
GetKeys = (void (__cdecl *)(int, BUTTONS *))GetProcAddress( hControllerDll, "GetKeys" );
WM_KeyDown = (void (__cdecl *)(WPARAM,LPARAM))GetProcAddress( hControllerDll, "WM_KeyDown" );
WM_KeyUp = (void (__cdecl *)(WPARAM,LPARAM))GetProcAddress( hControllerDll, "WM_KeyUp" );
ContRomOpen = (void (__cdecl *)(void))GetProcAddress( hControllerDll, "RomOpen" );
ContRomClosed = (void (__cdecl *)(void))GetProcAddress( hControllerDll, "RomClosed" );
RumbleCommand = (void (__cdecl *)(int, BOOL))GetProcAddress( hControllerDll, "RumbleCommand" );
return TRUE;
}
BOOL LoadGFXDll(char * RspDll) {
PLUGIN_INFO PluginInfo;
char DllName[300];
GetPluginDir(DllName);
strcat(DllName,GfxDLL);
hGfxDll = LoadLibrary(DllName);
if (hGfxDll == NULL) { return FALSE; }
GetDllInfo = (void (__cdecl *)(PLUGIN_INFO *))GetProcAddress( hGfxDll, "GetDllInfo" );
if (GetDllInfo == NULL) { return FALSE; }
GetDllInfo(&PluginInfo);
if (!ValidPluginVersion(&PluginInfo) || PluginInfo.MemoryBswaped == FALSE) { return FALSE; }
GFXCloseDLL = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "CloseDLL" );
if (GFXCloseDLL == NULL) { return FALSE; }
ChangeWindow = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ChangeWindow" );
if (ChangeWindow == NULL) { return FALSE; }
GFXDllConfig = (void (__cdecl *)(HWND))GetProcAddress( hGfxDll, "DllConfig" );
DrawScreen = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "DrawScreen" );
if (DrawScreen == NULL) { return FALSE; }
InitiateGFX = (BOOL (__cdecl *)(GFX_INFO))GetProcAddress( hGfxDll, "InitiateGFX" );
if (InitiateGFX == NULL) { return FALSE; }
MoveScreen = (void (__cdecl *)(int, int))GetProcAddress( hGfxDll, "MoveScreen" );
if (MoveScreen == NULL) { return FALSE; }
ProcessDList = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ProcessDList" );
if (ProcessDList == NULL) { return FALSE; }
GfxRomClosed = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "RomClosed" );
if (GfxRomClosed == NULL) { return FALSE; }
GfxRomOpen = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "RomOpen" );
if (GfxRomOpen == NULL) { return FALSE; }
UpdateScreen = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "UpdateScreen" );
if (UpdateScreen == NULL) { return FALSE; }
ViStatusChanged = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ViStatusChanged" );
if (ViStatusChanged == NULL) { return FALSE; }
ViWidthChanged = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ViWidthChanged" );
if (ViWidthChanged == NULL) { return FALSE; }
if (PluginInfo.Version >= 0x0103 ){
ProcessRDPList = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ProcessRDPList" );
if (ProcessRDPList == NULL) { return FALSE; }
CaptureScreen = (void (__cdecl *)(char *))GetProcAddress( hGfxDll, "CaptureScreen" );
if (CaptureScreen == NULL) { return FALSE; }
ShowCFB = (void (__cdecl *)(void))GetProcAddress( hGfxDll, "ShowCFB" );
if (ShowCFB == NULL) { return FALSE; }
GetGfxDebugInfo = (void (__cdecl *)(GFXDEBUG_INFO *))GetProcAddress( hGfxDll, "GetGfxDebugInfo" );
InitiateGFXDebugger = (void (__cdecl *)(DEBUG_INFO))GetProcAddress( hGfxDll, "InitiateGFXDebugger" );
} else {
ProcessRDPList = NULL;
CaptureScreen = NULL;
ShowCFB = NULL;
GetGfxDebugInfo = NULL;
InitiateGFXDebugger = NULL;
}
#ifdef CFB_READ
FrameBufferRead = (void (__cdecl *)(DWORD))GetProcAddress( hGfxDll, "FBRead" );
FrameBufferWrite = (void (__cdecl *)(DWORD, DWORD))GetProcAddress( hGfxDll, "FBWrite" );
#endif
return TRUE;
}
BOOL LoadRSPDll(char * RspDll) {
PLUGIN_INFO PluginInfo;
char DllName[300];
GetPluginDir(DllName);
strcat(DllName,RspDll);
RspDebug.UseBPoints = FALSE;
hRspDll = LoadLibrary(DllName);
if (hRspDll == NULL) { return FALSE; }
GetDllInfo = (void (__cdecl *)(PLUGIN_INFO *))GetProcAddress( hRspDll, "GetDllInfo" );
if (GetDllInfo == NULL) { return FALSE; }
GetDllInfo(&PluginInfo);
if (!ValidPluginVersion(&PluginInfo) || PluginInfo.MemoryBswaped == FALSE) { return FALSE; }
RSPVersion = PluginInfo.Version;
if (RSPVersion == 1) { RSPVersion = 0x0100; }
DoRspCycles = (DWORD (__cdecl *)(DWORD))GetProcAddress( hRspDll, "DoRspCycles" );
if (DoRspCycles == NULL) { return FALSE; }
InitiateRSP_1_0 = NULL;
InitiateRSP_1_1 = NULL;
if (RSPVersion == 0x100) {
InitiateRSP_1_0 = (void (__cdecl *)(RSP_INFO_1_0,DWORD *))GetProcAddress( hRspDll, "InitiateRSP" );
if (InitiateRSP_1_0 == NULL) { return FALSE; }
}
if (RSPVersion == 0x101) {
InitiateRSP_1_1 = (void (__cdecl *)(RSP_INFO_1_1,DWORD *))GetProcAddress( hRspDll, "InitiateRSP" );
if (InitiateRSP_1_1 == NULL) { return FALSE; }
}
RSPRomClosed = (void (__cdecl *)(void))GetProcAddress( hRspDll, "RomClosed" );
if (RSPRomClosed == NULL) { return FALSE; }
RSPCloseDLL = (void (__cdecl *)(void))GetProcAddress( hRspDll, "CloseDLL" );
if (RSPCloseDLL == NULL) { return FALSE; }
GetRspDebugInfo = (void (__cdecl *)(RSPDEBUG_INFO *))GetProcAddress( hRspDll, "GetRspDebugInfo" );
InitiateRSPDebugger = (void (__cdecl *)(DEBUG_INFO))GetProcAddress( hRspDll, "InitiateRSPDebugger" );
RSPDllConfig = (void (__cdecl *)(HWND))GetProcAddress( hRspDll, "DllConfig" );
return TRUE;
}
void SetupPlugins (HWND hWnd) {
ShutdownPlugins();
GetCurrentDlls();
PluginsInitilized = TRUE;
if (!LoadGFXDll(GfxDLL)) {
DisplayError(GS(MSG_FAIL_INIT_GFX));
PluginsInitilized = FALSE;
} else {
GFX_INFO GfxInfo;
GfxInfo.MemoryBswaped = TRUE;
GfxInfo.CheckInterrupts = CheckInterrupts;
GfxInfo.hStatusBar = hStatusWnd;
GfxInfo.hWnd = hWnd;
GfxInfo.HEADER = RomHeader;
GfxInfo.RDRAM = N64MEM;
GfxInfo.DMEM = DMEM;
GfxInfo.IMEM = IMEM;
GfxInfo.MI__INTR_REG = &MI_INTR_REG;
GfxInfo.DPC__START_REG = &DPC_START_REG;
GfxInfo.DPC__END_REG = &DPC_END_REG;
GfxInfo.DPC__CURRENT_REG = &DPC_CURRENT_REG;
GfxInfo.DPC__STATUS_REG = &DPC_STATUS_REG;
GfxInfo.DPC__CLOCK_REG = &DPC_CLOCK_REG;
GfxInfo.DPC__BUFBUSY_REG = &DPC_BUFBUSY_REG;
GfxInfo.DPC__PIPEBUSY_REG = &DPC_PIPEBUSY_REG;
GfxInfo.DPC__TMEM_REG = &DPC_TMEM_REG;
GfxInfo.VI__STATUS_REG = &VI_STATUS_REG;
GfxInfo.VI__ORIGIN_REG = &VI_ORIGIN_REG;
GfxInfo.VI__WIDTH_REG = &VI_WIDTH_REG;
GfxInfo.VI__INTR_REG = &VI_INTR_REG;
GfxInfo.VI__V_CURRENT_LINE_REG = &VI_CURRENT_REG;
GfxInfo.VI__TIMING_REG = &VI_TIMING_REG;
GfxInfo.VI__V_SYNC_REG = &VI_V_SYNC_REG;
GfxInfo.VI__H_SYNC_REG = &VI_H_SYNC_REG;
GfxInfo.VI__LEAP_REG = &VI_LEAP_REG;
GfxInfo.VI__H_START_REG = &VI_H_START_REG;
GfxInfo.VI__V_START_REG = &VI_V_START_REG;
GfxInfo.VI__V_BURST_REG = &VI_V_BURST_REG;
GfxInfo.VI__X_SCALE_REG = &VI_X_SCALE_REG;
GfxInfo.VI__Y_SCALE_REG = &VI_Y_SCALE_REG;
if (!InitiateGFX(GfxInfo) ) {
DisplayError(GS(MSG_FAIL_INIT_GFX));
PluginsInitilized = FALSE;
}
}
if (!LoadAudioDll(AudioDLL) ) {
AiCloseDLL = NULL;
AiDacrateChanged = NULL;
AiLenChanged = NULL;
AiReadLength = NULL;
AiUpdate = NULL;
InitiateAudio = NULL;
ProcessAList = NULL;
AiRomClosed = NULL;
DisplayError(GS(MSG_FAIL_INIT_AUDIO));
PluginsInitilized = FALSE;
} else {
AUDIO_INFO AudioInfo;
AudioInfo.hwnd = hWnd;
AudioInfo.hinst = hInst;
AudioInfo.MemoryBswaped = TRUE;
AudioInfo.HEADER = RomHeader;
AudioInfo.RDRAM = N64MEM;
AudioInfo.DMEM = DMEM;
AudioInfo.IMEM = IMEM;
AudioInfo.MI__INTR_REG = &AudioIntrReg;
AudioInfo.AI__DRAM_ADDR_REG = &AI_DRAM_ADDR_REG;
AudioInfo.AI__LEN_REG = &AI_LEN_REG;
AudioInfo.AI__CONTROL_REG = &AI_CONTROL_REG;
AudioInfo.AI__STATUS_REG = &AI_STATUS_REG;
AudioInfo.AI__DACRATE_REG = &AI_DACRATE_REG;
AudioInfo.AI__BITRATE_REG = &AI_BITRATE_REG;
AudioInfo.CheckInterrupts = AiCheckInterrupts;
if (!InitiateAudio(AudioInfo)) {
AiCloseDLL = NULL;
AiDacrateChanged = NULL;
AiLenChanged = NULL;
AiReadLength = NULL;
AiUpdate = NULL;
InitiateAudio = NULL;
ProcessAList = NULL;
AiRomClosed = NULL;
DisplayError(GS(MSG_FAIL_INIT_AUDIO));
PluginsInitilized = FALSE;
}
if (AiUpdate) {
DWORD ThreadID;
hAudioThread = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)AudioThread, (LPVOID)NULL,0, &ThreadID);
}
}
if (!LoadRSPDll(RspDLL)) {
DisplayError(GS(MSG_FAIL_INIT_RSP));
PluginsInitilized = FALSE;
} else {
RSP_INFO_1_0 RspInfo10;
RSP_INFO_1_1 RspInfo11;
RspInfo10.CheckInterrupts = CheckInterrupts;
RspInfo11.CheckInterrupts = CheckInterrupts;
RspInfo10.ProcessDlist = ProcessDList;
RspInfo11.ProcessDlist = ProcessDList;
RspInfo10.ProcessAlist = ProcessAList;
RspInfo11.ProcessAlist = ProcessAList;
RspInfo10.ProcessRdpList = ProcessRDPList;
RspInfo11.ProcessRdpList = ProcessRDPList;
RspInfo11.ShowCFB = ShowCFB;
RspInfo10.hInst = hInst;
RspInfo11.hInst = hInst;
RspInfo10.RDRAM = N64MEM;
RspInfo11.RDRAM = N64MEM;
RspInfo10.DMEM = DMEM;
RspInfo11.DMEM = DMEM;
RspInfo10.IMEM = IMEM;
RspInfo11.IMEM = IMEM;
RspInfo10.MemoryBswaped = FALSE;
RspInfo11.MemoryBswaped = FALSE;
RspInfo10.MI__INTR_REG = &MI_INTR_REG;
RspInfo11.MI__INTR_REG = &MI_INTR_REG;
RspInfo10.SP__MEM_ADDR_REG = &SP_MEM_ADDR_REG;
RspInfo11.SP__MEM_ADDR_REG = &SP_MEM_ADDR_REG;
RspInfo10.SP__DRAM_ADDR_REG = &SP_DRAM_ADDR_REG;
RspInfo11.SP__DRAM_ADDR_REG = &SP_DRAM_ADDR_REG;
RspInfo10.SP__RD_LEN_REG = &SP_RD_LEN_REG;
RspInfo11.SP__RD_LEN_REG = &SP_RD_LEN_REG;
RspInfo10.SP__WR_LEN_REG = &SP_WR_LEN_REG;
RspInfo11.SP__WR_LEN_REG = &SP_WR_LEN_REG;
RspInfo10.SP__STATUS_REG = &SP_STATUS_REG;
RspInfo11.SP__STATUS_REG = &SP_STATUS_REG;
RspInfo10.SP__DMA_FULL_REG = &SP_DMA_FULL_REG;
RspInfo11.SP__DMA_FULL_REG = &SP_DMA_FULL_REG;
RspInfo10.SP__DMA_BUSY_REG = &SP_DMA_BUSY_REG;
RspInfo11.SP__DMA_BUSY_REG = &SP_DMA_BUSY_REG;
RspInfo10.SP__PC_REG = &SP_PC_REG;
RspInfo11.SP__PC_REG = &SP_PC_REG;
RspInfo10.SP__SEMAPHORE_REG = &SP_SEMAPHORE_REG;
RspInfo11.SP__SEMAPHORE_REG = &SP_SEMAPHORE_REG;
RspInfo10.DPC__START_REG = &DPC_START_REG;
RspInfo11.DPC__START_REG = &DPC_START_REG;
RspInfo10.DPC__END_REG = &DPC_END_REG;
RspInfo11.DPC__END_REG = &DPC_END_REG;
RspInfo10.DPC__CURRENT_REG = &DPC_CURRENT_REG;
RspInfo11.DPC__CURRENT_REG = &DPC_CURRENT_REG;
RspInfo10.DPC__STATUS_REG = &DPC_STATUS_REG;
RspInfo11.DPC__STATUS_REG = &DPC_STATUS_REG;
RspInfo10.DPC__CLOCK_REG = &DPC_CLOCK_REG;
RspInfo11.DPC__CLOCK_REG = &DPC_CLOCK_REG;
RspInfo10.DPC__BUFBUSY_REG = &DPC_BUFBUSY_REG;
RspInfo11.DPC__BUFBUSY_REG = &DPC_BUFBUSY_REG;
RspInfo10.DPC__PIPEBUSY_REG = &DPC_PIPEBUSY_REG;
RspInfo11.DPC__PIPEBUSY_REG = &DPC_PIPEBUSY_REG;
RspInfo10.DPC__TMEM_REG = &DPC_TMEM_REG;
RspInfo11.DPC__TMEM_REG = &DPC_TMEM_REG;
if (RSPVersion == 0x0100) { InitiateRSP_1_0(RspInfo10, &RspTaskValue); }
if (RSPVersion == 0x0101) { InitiateRSP_1_1(RspInfo11, &RspTaskValue); }
}
#if (!defined(EXTERNAL_RELEASE))
if (HaveDebugger) {
DEBUG_INFO DebugInfo;
if (GetRspDebugInfo != NULL) { GetRspDebugInfo(&RspDebug); }
if (GetGfxDebugInfo != NULL) { GetGfxDebugInfo(&GFXDebug); }
DebugInfo.UpdateBreakPoints = RefreshBreakPoints;
DebugInfo.UpdateMemory = Refresh_Memory;
DebugInfo.UpdateR4300iRegisters = UpdateCurrentR4300iRegisterPanel;
DebugInfo.Enter_BPoint_Window = Enter_BPoint_Window;
DebugInfo.Enter_Memory_Window = Enter_Memory_Window;
DebugInfo.Enter_R4300i_Commands_Window = Enter_R4300i_Commands_Window;
DebugInfo.Enter_R4300i_Register_Window = Enter_R4300i_Register_Window;
DebugInfo.Enter_RSP_Commands_Window = RspDebug.Enter_RSP_Commands_Window;
if (InitiateRSPDebugger != NULL) { InitiateRSPDebugger(DebugInfo); }
if (InitiateGFXDebugger != NULL) { InitiateGFXDebugger(DebugInfo); }
}
#endif
if (!LoadControllerDll(ControllerDLL)) {
DisplayError(GS(MSG_FAIL_INIT_CONTROL));
PluginsInitilized = FALSE;
} else {
Controllers[0].Present = FALSE;
Controllers[0].RawData = FALSE;
Controllers[0].Plugin = PLUGIN_NONE;
Controllers[1].Present = FALSE;
Controllers[1].RawData = FALSE;
Controllers[1].Plugin = PLUGIN_NONE;
Controllers[2].Present = FALSE;
Controllers[2].RawData = FALSE;
Controllers[2].Plugin = PLUGIN_NONE;
Controllers[3].Present = FALSE;
Controllers[3].RawData = FALSE;
Controllers[3].Plugin = PLUGIN_NONE;
if (ContVersion == 0x0100) {
InitiateControllers_1_0(hWnd,Controllers);
}
if (ContVersion == 0x0101) {
CONTROL_INFO ControlInfo;
ControlInfo.Controls = Controllers;
ControlInfo.HEADER = RomHeader;
ControlInfo.hinst = hInst;
ControlInfo.hMainWindow = hWnd;
ControlInfo.MemoryBswaped = TRUE;
InitiateControllers_1_1(ControlInfo);
}
#ifndef EXTERNAL_RELEASE
// Controllers[0].Plugin = PLUGIN_RUMBLE_PAK;
#endif
}
if (!PluginsInitilized) { ChangeSettings(hMainWindow); }
}
void SetupPluginScreen (HWND hDlg) {
WIN32_FIND_DATA FindData;
PLUGIN_INFO PluginInfo;
char SearchsStr[300], Plugin[300];
HANDLE hFind, hLib;
int index;
#ifdef EXTERNAL_RELEASE
ShowWindow(GetDlgItem(hDlg,IDC_RSP_NAME),SW_HIDE);
ShowWindow(GetDlgItem(hDlg,RSP_LIST),SW_HIDE);
ShowWindow(GetDlgItem(hDlg,RSP_ABOUT),SW_HIDE);
#endif
SetDlgItemText(hDlg,RSP_ABOUT,GS(PLUG_ABOUT));
SetDlgItemText(hDlg,GFX_ABOUT,GS(PLUG_ABOUT));
SetDlgItemText(hDlg,AUDIO_ABOUT,GS(PLUG_ABOUT));
SetDlgItemText(hDlg,CONT_ABOUT,GS(PLUG_ABOUT));
SetDlgItemText(hDlg,IDC_RSP_NAME,GS(PLUG_RSP));
SetDlgItemText(hDlg,IDC_GFX_NAME,GS(PLUG_GFX));
SetDlgItemText(hDlg,IDC_AUDIO_NAME,GS(PLUG_AUDIO));
SetDlgItemText(hDlg,IDC_CONT_NAME,GS(PLUG_CTRL));
GetPluginDir(SearchsStr);
strcat(SearchsStr,"*.dll");
hFind = FindFirstFile(SearchsStr, &FindData);
if (hFind == INVALID_HANDLE_VALUE) { return; }
PluginCount = 0;
for (;;) {
PluginNames[PluginCount] = malloc(strlen(FindData.cFileName) + 1);
strcpy(PluginNames[PluginCount],FindData.cFileName);
GetPluginDir(Plugin);
strcat(Plugin,PluginNames[PluginCount]);
hLib = LoadLibrary(Plugin);
if (hLib == NULL) {
DisplayError("%s\n %s",GS(MSG_FAIL_LOAD_PLUGIN),Plugin);
if (FindNextFile(hFind,&FindData) == 0) { return; }
continue;
}
GetDllInfo = (void (__cdecl *)(PLUGIN_INFO *))GetProcAddress( hLib, "GetDllInfo" );
if (GetDllInfo == NULL) {
FreeLibrary(hLib);
if (FindNextFile(hFind,&FindData) == 0) { return; }
continue;
}
GetDllInfo(&PluginInfo);
if (!ValidPluginVersion(&PluginInfo) ||
(PluginInfo.Type != PLUGIN_TYPE_CONTROLLER && PluginInfo.MemoryBswaped == FALSE))
{
FreeLibrary(hLib);
if (FindNextFile(hFind,&FindData) == 0) { return; }
continue;
}
switch(PluginInfo.Type) {
#ifndef EXTERNAL_RELEASE
case PLUGIN_TYPE_RSP:
index = SendMessage(GetDlgItem(hDlg,RSP_LIST),CB_ADDSTRING,(WPARAM)0, (LPARAM)&PluginInfo.Name);
SendMessage(GetDlgItem(hDlg,RSP_LIST),CB_SETITEMDATA ,(WPARAM)index, (LPARAM)PluginCount);
if(_stricmp(RspDLL,PluginNames[PluginCount]) == 0) {
SendMessage(GetDlgItem(hDlg,RSP_LIST),CB_SETCURSEL,(WPARAM)index,(LPARAM)0);
RSPDllAbout = (void (__cdecl *)(HWND))GetProcAddress( hLib, "DllAbout" );
EnableWindow(GetDlgItem(hDlg,RSP_ABOUT),RSPDllAbout != NULL ? TRUE:FALSE);
} else {
FreeLibrary(hLib);
}
break;
#endif
case PLUGIN_TYPE_GFX:
index = SendMessage(GetDlgItem(hDlg,GFX_LIST),CB_ADDSTRING,(WPARAM)0, (LPARAM)&PluginInfo.Name);
SendMessage(GetDlgItem(hDlg,GFX_LIST),CB_SETITEMDATA ,(WPARAM)index, (LPARAM)PluginCount);
if(_stricmp(GfxDLL,PluginNames[PluginCount]) == 0) {
SendMessage(GetDlgItem(hDlg,GFX_LIST),CB_SETCURSEL,(WPARAM)index,(LPARAM)0);
GFXDllAbout = (void (__cdecl *)(HWND))GetProcAddress( hLib, "DllAbout" );
EnableWindow(GetDlgItem(hDlg,GFX_ABOUT),GFXDllAbout != NULL ? TRUE:FALSE);
} else {
FreeLibrary(hLib);
}
break;
case PLUGIN_TYPE_AUDIO:
index = SendMessage(GetDlgItem(hDlg,AUDIO_LIST),CB_ADDSTRING,(WPARAM)0, (LPARAM)&PluginInfo.Name);
SendMessage(GetDlgItem(hDlg,AUDIO_LIST),CB_SETITEMDATA ,(WPARAM)index, (LPARAM)PluginCount);
if(_stricmp(AudioDLL,PluginNames[PluginCount]) == 0) {
SendMessage(GetDlgItem(hDlg,AUDIO_LIST),CB_SETCURSEL,(WPARAM)index,(LPARAM)0);
AiDllAbout = (void (__cdecl *)(HWND))GetProcAddress( hLib, "DllAbout" );
EnableWindow(GetDlgItem(hDlg,AUDIO_ABOUT),AiDllAbout != NULL ? TRUE:FALSE);
} else {
FreeLibrary(hLib);
}
break;
case PLUGIN_TYPE_CONTROLLER:
index = SendMessage(GetDlgItem(hDlg,CONT_LIST),CB_ADDSTRING,(WPARAM)0, (LPARAM)&PluginInfo.Name);
SendMessage(GetDlgItem(hDlg,CONT_LIST),CB_SETITEMDATA ,(WPARAM)index, (LPARAM)PluginCount);
if(_stricmp(ControllerDLL,PluginNames[PluginCount]) == 0) {
SendMessage(GetDlgItem(hDlg,CONT_LIST),CB_SETCURSEL,(WPARAM)index,(LPARAM)0);
ContDllAbout = (void (__cdecl *)(HWND))GetProcAddress( hLib, "DllAbout" );
EnableWindow(GetDlgItem(hDlg,CONT_ABOUT),ContDllAbout != NULL ? TRUE:FALSE);
} else {
FreeLibrary(hLib);
}
break;
}
PluginCount += 1;
if (FindNextFile(hFind,&FindData) == 0) { return; }
}
}
void ShutdownPlugins (void) {
TerminateThread(hAudioThread,0);
if (GFXCloseDLL != NULL) { GFXCloseDLL(); }
if (RSPCloseDLL != NULL) { RSPCloseDLL(); }
if (AiCloseDLL != NULL) { AiCloseDLL(); }
if (ContCloseDLL != NULL) { ContCloseDLL(); }
FreeLibrary(hAudioDll);
FreeLibrary(hControllerDll);
FreeLibrary(hGfxDll);
FreeLibrary(hRspDll);
PluginsInitilized = FALSE;
}
BOOL ValidPluginVersion ( PLUGIN_INFO * PluginInfo ) {
switch (PluginInfo->Type) {
case PLUGIN_TYPE_RSP:
if (PluginInfo->Version == 0x0001) { return TRUE; }
if (PluginInfo->Version == 0x0100) { return TRUE; }
if (PluginInfo->Version == 0x0101) { return TRUE; }
break;
case PLUGIN_TYPE_GFX:
if (PluginInfo->Version == 0x0102) { return TRUE; }
if (PluginInfo->Version == 0x0103) { return TRUE; }
break;
case PLUGIN_TYPE_AUDIO:
if (PluginInfo->Version == 0x0101) { return TRUE; }
break;
case PLUGIN_TYPE_CONTROLLER:
if (PluginInfo->Version == 0x0100) { return TRUE; }
break;
}
return FALSE;
}