Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/misc/emulator/xnes/snes9x/c4.cpp
28515 views
1
/***********************************************************************************
2
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3
4
(c) Copyright 1996 - 2002 Gary Henderson ([email protected]),
5
Jerremy Koot ([email protected])
6
7
(c) Copyright 2002 - 2004 Matthew Kendora
8
9
(c) Copyright 2002 - 2005 Peter Bortas ([email protected])
10
11
(c) Copyright 2004 - 2005 Joel Yliluoma (http://iki.fi/bisqwit/)
12
13
(c) Copyright 2001 - 2006 John Weidman ([email protected])
14
15
(c) Copyright 2002 - 2006 funkyass ([email protected]),
16
Kris Bleakley ([email protected])
17
18
(c) Copyright 2002 - 2010 Brad Jorsch ([email protected]),
19
Nach ([email protected]),
20
21
(c) Copyright 2002 - 2011 zones ([email protected])
22
23
(c) Copyright 2006 - 2007 nitsuja
24
25
(c) Copyright 2009 - 2011 BearOso,
26
OV2
27
28
29
BS-X C emulator code
30
(c) Copyright 2005 - 2006 Dreamer Nom,
31
zones
32
33
C4 x86 assembler and some C emulation code
34
(c) Copyright 2000 - 2003 _Demo_ ([email protected]),
35
Nach,
36
zsKnight ([email protected])
37
38
C4 C++ code
39
(c) Copyright 2003 - 2006 Brad Jorsch,
40
Nach
41
42
DSP-1 emulator code
43
(c) Copyright 1998 - 2006 _Demo_,
44
Andreas Naive ([email protected]),
45
Gary Henderson,
46
Ivar ([email protected]),
47
John Weidman,
48
Kris Bleakley,
49
Matthew Kendora,
50
Nach,
51
neviksti ([email protected])
52
53
DSP-2 emulator code
54
(c) Copyright 2003 John Weidman,
55
Kris Bleakley,
56
Lord Nightmare ([email protected]),
57
Matthew Kendora,
58
neviksti
59
60
DSP-3 emulator code
61
(c) Copyright 2003 - 2006 John Weidman,
62
Kris Bleakley,
63
Lancer,
64
z80 gaiden
65
66
DSP-4 emulator code
67
(c) Copyright 2004 - 2006 Dreamer Nom,
68
John Weidman,
69
Kris Bleakley,
70
Nach,
71
z80 gaiden
72
73
OBC1 emulator code
74
(c) Copyright 2001 - 2004 zsKnight,
75
pagefault ([email protected]),
76
Kris Bleakley
77
Ported from x86 assembler to C by sanmaiwashi
78
79
SPC7110 and RTC C++ emulator code used in 1.39-1.51
80
(c) Copyright 2002 Matthew Kendora with research by
81
zsKnight,
82
John Weidman,
83
Dark Force
84
85
SPC7110 and RTC C++ emulator code used in 1.52+
86
(c) Copyright 2009 byuu,
87
neviksti
88
89
S-DD1 C emulator code
90
(c) Copyright 2003 Brad Jorsch with research by
91
Andreas Naive,
92
John Weidman
93
94
S-RTC C emulator code
95
(c) Copyright 2001 - 2006 byuu,
96
John Weidman
97
98
ST010 C++ emulator code
99
(c) Copyright 2003 Feather,
100
John Weidman,
101
Kris Bleakley,
102
Matthew Kendora
103
104
Super FX x86 assembler emulator code
105
(c) Copyright 1998 - 2003 _Demo_,
106
pagefault,
107
zsKnight
108
109
Super FX C emulator code
110
(c) Copyright 1997 - 1999 Ivar,
111
Gary Henderson,
112
John Weidman
113
114
Sound emulator code used in 1.5-1.51
115
(c) Copyright 1998 - 2003 Brad Martin
116
(c) Copyright 1998 - 2006 Charles Bilyue'
117
118
Sound emulator code used in 1.52+
119
(c) Copyright 2004 - 2007 Shay Green ([email protected])
120
121
SH assembler code partly based on x86 assembler code
122
(c) Copyright 2002 - 2004 Marcus Comstedt ([email protected])
123
124
2xSaI filter
125
(c) Copyright 1999 - 2001 Derek Liauw Kie Fa
126
127
HQ2x, HQ3x, HQ4x filters
128
(c) Copyright 2003 Maxim Stepin ([email protected])
129
130
NTSC filter
131
(c) Copyright 2006 - 2007 Shay Green
132
133
GTK+ GUI code
134
(c) Copyright 2004 - 2011 BearOso
135
136
Win32 GUI code
137
(c) Copyright 2003 - 2006 blip,
138
funkyass,
139
Matthew Kendora,
140
Nach,
141
nitsuja
142
(c) Copyright 2009 - 2011 OV2
143
144
Mac OS GUI code
145
(c) Copyright 1998 - 2001 John Stiles
146
(c) Copyright 2001 - 2011 zones
147
148
149
Specific ports contains the works of other authors. See headers in
150
individual files.
151
152
153
Snes9x homepage: http://www.snes9x.com/
154
155
Permission to use, copy, modify and/or distribute Snes9x in both binary
156
and source form, for non-commercial purposes, is hereby granted without
157
fee, providing that this license information and copyright notice appear
158
with all copies and any derived work.
159
160
This software is provided 'as-is', without any express or implied
161
warranty. In no event shall the authors be held liable for any damages
162
arising from the use of this software or it's derivatives.
163
164
Snes9x is freeware for PERSONAL USE only. Commercial users should
165
seek permission of the copyright holders first. Commercial use includes,
166
but is not limited to, charging money for Snes9x or software derived from
167
Snes9x, including Snes9x or derivatives in commercial game bundles, and/or
168
using Snes9x as a promotion for your commercial product.
169
170
The copyright holders request that bug fixes and improvements to the code
171
should be forwarded to them so everyone can benefit from the modifications
172
in future versions.
173
174
Super NES and Super Nintendo Entertainment System are trademarks of
175
Nintendo Co., Limited and its subsidiary companies.
176
***********************************************************************************/
177
178
179
#include <math.h>
180
#include "snes9x.h"
181
#include "memmap.h"
182
183
#define C4_PI 3.14159265
184
185
int16 C4WFXVal;
186
int16 C4WFYVal;
187
int16 C4WFZVal;
188
int16 C4WFX2Val;
189
int16 C4WFY2Val;
190
int16 C4WFDist;
191
int16 C4WFScale;
192
int16 C41FXVal;
193
int16 C41FYVal;
194
int16 C41FAngleRes;
195
int16 C41FDist;
196
int16 C41FDistVal;
197
198
static double tanval;
199
static double c4x, c4y, c4z;
200
static double c4x2, c4y2, c4z2;
201
202
203
void C4TransfWireFrame (void)
204
{
205
c4x = (double) C4WFXVal;
206
c4y = (double) C4WFYVal;
207
c4z = (double) C4WFZVal - 0x95;
208
209
// Rotate X
210
tanval = -(double) C4WFX2Val * C4_PI * 2 / 128;
211
c4y2 = c4y * cos(tanval) - c4z * sin(tanval);
212
c4z2 = c4y * sin(tanval) + c4z * cos(tanval);
213
214
// Rotate Y
215
tanval = -(double) C4WFY2Val * C4_PI * 2 / 128;
216
c4x2 = c4x * cos(tanval) + c4z2 * sin(tanval);
217
c4z = c4x * -sin(tanval) + c4z2 * cos(tanval);
218
219
// Rotate Z
220
tanval = -(double) C4WFDist * C4_PI * 2 / 128;
221
c4x = c4x2 * cos(tanval) - c4y2 * sin(tanval);
222
c4y = c4x2 * sin(tanval) + c4y2 * cos(tanval);
223
224
// Scale
225
C4WFXVal = (int16) (c4x * (double) C4WFScale / (0x90 * (c4z + 0x95)) * 0x95);
226
C4WFYVal = (int16) (c4y * (double) C4WFScale / (0x90 * (c4z + 0x95)) * 0x95);
227
}
228
229
void C4TransfWireFrame2 (void)
230
{
231
c4x = (double) C4WFXVal;
232
c4y = (double) C4WFYVal;
233
c4z = (double) C4WFZVal;
234
235
// Rotate X
236
tanval = -(double) C4WFX2Val * C4_PI * 2 / 128;
237
c4y2 = c4y * cos(tanval) - c4z * sin(tanval);
238
c4z2 = c4y * sin(tanval) + c4z * cos(tanval);
239
240
// Rotate Y
241
tanval = -(double) C4WFY2Val * C4_PI * 2 / 128;
242
c4x2 = c4x * cos(tanval) + c4z2 * sin(tanval);
243
c4z = c4x * -sin(tanval) + c4z2 * cos(tanval);
244
245
// Rotate Z
246
tanval = -(double) C4WFDist * C4_PI * 2 / 128;
247
c4x = c4x2 * cos(tanval) - c4y2 * sin(tanval);
248
c4y = c4x2 * sin(tanval) + c4y2 * cos(tanval);
249
250
// Scale
251
C4WFXVal = (int16) (c4x * (double) C4WFScale / 0x100);
252
C4WFYVal = (int16) (c4y * (double) C4WFScale / 0x100);
253
}
254
255
void C4CalcWireFrame (void)
256
{
257
C4WFXVal = C4WFX2Val - C4WFXVal;
258
C4WFYVal = C4WFY2Val - C4WFYVal;
259
260
if (abs(C4WFXVal) > abs(C4WFYVal))
261
{
262
C4WFDist = abs(C4WFXVal) + 1;
263
C4WFYVal = (int16) (256 * (double) C4WFYVal / abs(C4WFXVal));
264
if (C4WFXVal < 0)
265
C4WFXVal = -256;
266
else
267
C4WFXVal = 256;
268
}
269
else
270
{
271
if (C4WFYVal != 0)
272
{
273
C4WFDist = abs(C4WFYVal) + 1;
274
C4WFXVal = (int16) (256 * (double) C4WFXVal / abs(C4WFYVal));
275
if (C4WFYVal < 0)
276
C4WFYVal = -256;
277
else
278
C4WFYVal = 256;
279
}
280
else
281
C4WFDist = 0;
282
}
283
}
284
285
void C4Op1F (void)
286
{
287
if (C41FXVal == 0)
288
{
289
if (C41FYVal > 0)
290
C41FAngleRes = 0x80;
291
else
292
C41FAngleRes = 0x180;
293
}
294
else
295
{
296
tanval = (double) C41FYVal / C41FXVal;
297
C41FAngleRes = (int16) (atan(tanval) / (C4_PI * 2) * 512);
298
if (C41FXVal< 0)
299
C41FAngleRes += 0x100;
300
C41FAngleRes &= 0x1FF;
301
}
302
}
303
304
void C4Op15 (void)
305
{
306
tanval = sqrt((double) C41FYVal * C41FYVal + (double) C41FXVal * C41FXVal);
307
C41FDist = (int16) tanval;
308
}
309
310
void C4Op0D (void)
311
{
312
tanval = sqrt((double) C41FYVal * C41FYVal + (double) C41FXVal * C41FXVal);
313
tanval = C41FDistVal / tanval;
314
C41FYVal = (int16) (C41FYVal * tanval * 0.99);
315
C41FXVal = (int16) (C41FXVal * tanval * 0.98);
316
}
317
318
uint8 * S9xGetBasePointerC4 (uint16 Address)
319
{
320
if (Address >= 0x7f40 && Address <= 0x7f5e)
321
return (NULL);
322
return (Memory.C4RAM - 0x6000);
323
}
324
325
uint8 * S9xGetMemPointerC4 (uint16 Address)
326
{
327
if (Address >= 0x7f40 && Address <= 0x7f5e)
328
return (NULL);
329
return (Memory.C4RAM - 0x6000 + (Address & 0xffff));
330
}
331
332