-
Notifications
You must be signed in to change notification settings - Fork 5
/
NuanceVideoDisplay.cpp
242 lines (229 loc) · 5.38 KB
/
NuanceVideoDisplay.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
#include "glew.h"
#include "Byteswap.h"
#include "NuanceVideoDisplay.h"
#include "NuanceGLWidget.h"
#include "NuonEnvironment.h"
#include "QPixmap.h"
#include "joystick.h"
#include "mpe.h"
#include "qgl.h"
#include "video.h"
extern NuonEnvironment *nuonEnv;
extern ControllerData *controller;
extern MPE *videoRequestSource;
extern volatile eVideoRequest currentVideoRequest;
NuanceVideoDisplay::NuanceVideoDisplay(QWidget* parent, const char* name, bool modal, WFlags fl) : QDialog( parent, name, modal, fl )
{
if(!name)
{
setName( "NuanceVideoDisplay" );
}
setIcon(QPixmap("nuance.bmp","BMP"));
setCaption( tr( "Nuance Video Display" ) );
resize(720, 480);
bGlewInitialized = false;
glWidget = new NuanceGLWidget(this,"NuanceGLWidget");
startTimer(0);
}
NuanceVideoDisplay::NuanceVideoDisplay(QGLFormat &format, QWidget* parent, const char* name, bool modal, WFlags fl) : QDialog( parent, name, modal, fl )
{
if(!name)
{
setName("NuanceVideoDisplay");
}
setIcon(QPixmap("nuance.bmp","BMP"));
resize( 720, 480 );
setCaption( tr( "Nuance Video Display" ) );
bGlewInitialized = false;
glWidget = new NuanceGLWidget(format,this,"NuanceGLWidget");
startTimer(0);
}
NuanceVideoDisplay::~NuanceVideoDisplay()
{
killTimers();
delete glWidget;
}
void NuanceVideoDisplay::resizeEvent(QResizeEvent *event)
{
QSize size = event->size();
glWidget->resize(size.width(),size.height());
}
void NuanceVideoDisplay::paintEvent(QPaintEvent *event)
{
nuonEnv->bMainBufferModified = true;
nuonEnv->bOverlayBufferModified = true;
UpdateDisplay();
}
void NuanceVideoDisplay::keyPressEvent(QKeyEvent *keyEvent)
{
uint16 buttons = 0;
switch(keyEvent->key())
{
case Key_A:
//Start
buttons = CTRLR_BUTTON_START;
break;
case Key_S:
//NUON (Z)
buttons = CTRLR_BUTTON_NUON;
break;
case Key_D:
//A
buttons = CTRLR_BUTTON_A;
break;
case Key_F:
//B
buttons = CTRLR_BUTTON_B;
break;
case Key_Up:
//DPad Up
buttons = CTRLR_DPAD_UP;
break;
case Key_Down:
//DPad Down
buttons = CTRLR_DPAD_DOWN;
break;
case Key_Left:
//DPad Left
buttons = CTRLR_DPAD_LEFT;
break;
case Key_Right:
//DPad Right
buttons = CTRLR_DPAD_RIGHT;
break;
case Key_Q:
//LShoulder
buttons = CTRLR_BUTTON_L;
break;
case Key_T:
//RShoulder
buttons = CTRLR_BUTTON_R;
break;
case Key_W:
//C left
buttons = CTRLR_BUTTON_C_LEFT;
break;
case Key_E:
//C down
buttons = CTRLR_BUTTON_C_DOWN;
break;
case Key_R:
//C right
buttons = CTRLR_BUTTON_C_RIGHT;
break;
case Key_3:
//C up
buttons = CTRLR_BUTTON_C_UP;
break;
}
SwapWordBytes(&buttons);
if(controller)
{
controller[1].buttons |= buttons;
}
}
void NuanceVideoDisplay::keyReleaseEvent(QKeyEvent *keyEvent)
{
uint16 buttons = 0;
switch(keyEvent->key())
{
case Key_A:
//Start
buttons = ~CTRLR_BUTTON_START;
break;
case Key_S:
//NUON (Z)
buttons = ~CTRLR_BUTTON_NUON;
break;
case Key_D:
//A
buttons = ~CTRLR_BUTTON_A;
break;
case Key_F:
//B
buttons = ~CTRLR_BUTTON_B;
break;
case Key_Up:
//DPad Up
buttons = ~CTRLR_DPAD_UP;
break;
case Key_Down:
//DPad Down
buttons = ~CTRLR_DPAD_DOWN;
break;
case Key_Left:
//DPad Left
buttons = ~CTRLR_DPAD_LEFT;
break;
case Key_Right:
//DPad Right
buttons = ~CTRLR_DPAD_RIGHT;
break;
case Key_Q:
//LShoulder
buttons = ~CTRLR_BUTTON_L;
break;
case Key_T:
//RShoulder
buttons = ~CTRLR_BUTTON_R;
break;
case Key_W:
//C left
buttons = ~CTRLR_BUTTON_C_LEFT;
break;
case Key_E:
//C down
buttons = ~CTRLR_BUTTON_C_DOWN;
break;
case Key_R:
//C right
buttons = ~CTRLR_BUTTON_C_RIGHT;
break;
case Key_3:
//C up
buttons = ~CTRLR_BUTTON_C_UP;
break;
}
SwapWordBytes(&buttons);
if(controller)
{
controller[1].buttons &= buttons;
}
}
void NuanceVideoDisplay::UpdateDisplay(void)
{
glWidget->UpdateDisplay();
}
void NuanceVideoDisplay::timerEvent(QTimerEvent *timerEvent)
{
if(videoRequestSource && (currentVideoRequest != VIDEOREQUEST_NONE))
{
switch(currentVideoRequest)
{
case VIDEOREQUEST_INITGLEW:
break;
case VIDEOREQUEST_VIDCONFIG:
VidConfig(videoRequestSource);
break;
case VIDEOREQUEST_VIDSETUP:
VidSetup(videoRequestSource);
break;
case VIDEOREQUEST_SETDEFAULTCOLOR:
SetDefaultColor(videoRequestSource);
break;
case VIDEOREQUEST_SETVIDEOMODE:
SetVideoMode();
break;
case VIDEOREQUEST_VIDCHANGEBASE:
VidChangeBase(videoRequestSource);
break;
case VIDEOREQUEST_VIDCHANGESCROLL:
VidChangeScroll(videoRequestSource);
break;
case VIDEOREQUEST_VIDSETCLUTRANGE:
VidSetCLUTRange(videoRequestSource);
break;
}
}
currentVideoRequest = VIDEOREQUEST_NONE;
}