-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
ofxiOSEAGLView.mm
394 lines (297 loc) · 12 KB
/
ofxiOSEAGLView.mm
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
//
// ofxiOSEAGLView.m
// iOS+OFLib
//
// Created by lukasz karluk on 5/07/12.
//
#include "ofxiOSConstants.h"
#if defined(OF_UI_KIT) && defined(TARGET_OF_IOS)
#include "ofxiOSEAGLView.h"
#include "ofxiOSApp.h"
#include "ofAppiOSWindow.h"
#include "ofGLRenderer.h"
#include "ofGLProgrammableRenderer.h"
#include <TargetConditionals.h>
#import <GameController/GameController.h>
using std::shared_ptr;
static ofxiOSEAGLView * _instanceRef = nil;
@interface ofxiOSEAGLView() {
BOOL bInit;
shared_ptr<ofAppiOSWindow> window;
shared_ptr<ofxiOSApp> app;
BOOL bSetup;
}
- (void)updateDimensions;
@end
@implementation ofxiOSEAGLView
@synthesize screenSize;
@synthesize windowSize;
@synthesize windowPos;
+ (ofxiOSEAGLView *) getInstance {
return _instanceRef;
}
- (instancetype)initWithFrame:(CGRect)frame andApp:(ofxiOSApp *)appPtr {
return [self initWithFrame:frame andApp:appPtr sharegroup:nil];
}
- (instancetype)initWithFrame:(CGRect)frame andApp:(ofxiOSApp *)appPtr sharegroup:(EAGLSharegroup *)sharegroup {
window = dynamic_pointer_cast<ofAppiOSWindow>(ofGetMainLoop()->getCurrentWindow());
if(window.get() == NULL) {
ofLog(OF_LOG_FATAL_ERROR, "ofxiOSEAGLView::initWithFrame - window is NULL");
return nil;
}
ESRendererVersion preferedRendererVersion = (ESRendererVersion)window->getSettings().glesVersion;
self = [self initWithFrame:frame
andPreferedRenderer:preferedRendererVersion
andDepth:window->isDepthBufferEnabled()
andAA:window->isAntiAliasingEnabled()
andNumSamples:window->getAntiAliasingSampleCount()
andRetina:window->isRetinaEnabled()
andRetinaScale:window->getRetinaScale()
sharegroup:sharegroup];
bSetup = NO;
if(self) {
_instanceRef = self;
app = shared_ptr<ofxiOSApp>(appPtr);
activeTouches = [[NSMutableDictionary alloc] init];
screenSize = new glm::vec2();
windowSize = new glm::vec2();
windowPos = new glm::vec2();
ofSetOrientation(window->getOrientation());
[self updateDimensions];
bInit = YES;
}
return self;
}
- (void)setup {
if(window.get() == NULL) {
ofLog(OF_LOG_FATAL_ERROR, "ofxiOSEAGLView setup. Failed setup. window is NULL");
return;
}
if(app.get() != ofGetAppPtr()) { // check if already running.
ofSetMainLoop(shared_ptr<ofMainLoop>(NULL)); // destroy old main loop.
auto mainLoop = std::make_shared<ofMainLoop>(); // make new main loop.
ofSetMainLoop(mainLoop);
ofiOSWindowSettings windowSettings = window->getSettings();
window = NULL;
window = dynamic_pointer_cast<ofAppiOSWindow>(ofCreateWindow(windowSettings));
ofRunApp(app);
}
if(window->isProgrammableRenderer() == true) {
static_cast<ofGLProgrammableRenderer*>(window->renderer().get())->setup(window->getSettings().glesVersion, 0);
} else{
static_cast<ofGLRenderer*>(window->renderer().get())->setup();
}
ofxiOSAlerts.addListener(app.get());
ofDisableTextureEdgeHack();
window->events().notifySetup();
bSetup = YES;
window->renderer()->clear();
}
- (void)destroy {
if(!bInit) {
return;
}
window->events().notifyExit();
ofxiOSAlerts.removeListener(app.get());
ofGetMainLoop()->exit();
app = NULL;
window = NULL;
activeTouches = nil;
delete screenSize;
screenSize = NULL;
delete windowSize;
windowSize = NULL;
delete windowPos;
windowPos = NULL;
_instanceRef = nil;
bInit = NO;
[super destroy];
}
- (void)dealloc {
[self destroy];
}
- (void)layoutSubviews {
[super layoutSubviews];
[self updateDimensions];
[super notifyResized];
window->events().notifyWindowResized(ofGetWidth(), ofGetHeight());
}
- (void)updateDimensions {
*windowPos = glm::vec2(self.frame.origin.x * scaleFactor, self.frame.origin.y * scaleFactor);
*windowSize = glm::vec2(self.bounds.size.width * scaleFactor, self.bounds.size.height * scaleFactor);
UIScreen * currentScreen = self.window.screen; // current screen is the screen that GLView is attached to.
if(!currentScreen) { // if GLView is not attached, assume to be main device screen.
currentScreen = [UIScreen mainScreen];
}
*screenSize = glm::vec2(currentScreen.bounds.size.width * scaleFactor, currentScreen.bounds.size.height * scaleFactor);
}
- (void)notifyResized {
// blank this.
// we want to notifyResized at the end of layoutSubviews.
}
- (void)drawView {
if(bSetup == NO) return;
window->events().notifyUpdate();
//------------------------------------------
[self lockGL];
[self startRender];
window->renderer()->startRender();
if(window->isSetupScreenEnabled()) {
window->renderer()->setupScreen();
}
//------------------------------------------ draw.
window->events().notifyDraw();
//------------------------------------------
window->renderer()->finishRender();
[self finishRender];
[self unlockGL];
[super notifyDraw]; // alerts delegate that a new frame has been drawn.
}
- (void)notifyDraw {
// blank this.
// we want to notifyDraw at the end of drawView.
}
//------------------------------------------------------
- (CGPoint)orientateTouchPoint:(CGPoint)touchPoint {
if(ofAppiOSWindow::getInstance()->doesHWOrientation()) {
return touchPoint;
}
ofOrientation orientation = ofGetOrientation();
CGPoint touchPointOriented = CGPointZero;
switch(orientation) {
case OF_ORIENTATION_180:
touchPointOriented.x = ofGetWidth() - touchPoint.x;
touchPointOriented.y = ofGetHeight() - touchPoint.y;
break;
case OF_ORIENTATION_90_RIGHT:
touchPointOriented.x = touchPoint.y;
touchPointOriented.y = ofGetHeight() - touchPoint.x;
break;
case OF_ORIENTATION_90_LEFT:
touchPointOriented.x = ofGetWidth() - touchPoint.y;
touchPointOriented.y = touchPoint.x;
break;
case OF_ORIENTATION_DEFAULT:
default:
touchPointOriented = touchPoint;
break;
}
return touchPointOriented;
}
//------------------------------------------------------
-(void) resetTouches {
[activeTouches removeAllObjects];
}
- (void)touchesBegan:(NSSet<UITouch *> *)touches
withEvent:(UIEvent *)event{
if(!bInit || !bSetup) {
// if the glView is destroyed which also includes the OF app,
// we no longer need to pass on these touch events.
return;
}
for(UITouch *touch in touches) {
int touchIndex = 0;
while([[activeTouches allValues] containsObject:@(touchIndex)]){
touchIndex++;
}
[activeTouches setObject:[NSNumber numberWithInt:touchIndex]
forKey:[NSValue valueWithPointer:(__bridge void *)touch]];
CGPoint touchPoint = [touch locationInView:self];
touchPoint.x *= scaleFactor; // this has to be done because retina still returns points in 320x240 but with high percision
touchPoint.y *= scaleFactor;
touchPoint = [self orientateTouchPoint:touchPoint];
if( touchIndex==0 ){
window->events().notifyMousePressed(touchPoint.x, touchPoint.y, 0);
}
ofTouchEventArgs touchArgs;
touchArgs.numTouches = [[event touchesForView:self] count];
touchArgs.x = touchPoint.x;
touchArgs.y = touchPoint.y;
touchArgs.id = touchIndex;
if([touch tapCount] == 2){
touchArgs.type = ofTouchEventArgs::doubleTap;
ofNotifyEvent(window->events().touchDoubleTap,touchArgs); // send doubletap
}
touchArgs.type = ofTouchEventArgs::down;
ofNotifyEvent(window->events().touchDown,touchArgs); // but also send tap (upto app programmer to ignore this if doubletap came that frame)
}
}
//------------------------------------------------------
- (void)touchesMoved:(NSSet *)touches
withEvent:(UIEvent *)event{
if(!bInit || !bSetup) {
// if the glView is destroyed which also includes the OF app,
// we no longer need to pass on these touch events.
return;
}
for(UITouch *touch in touches){
int touchIndex = [[activeTouches objectForKey:[NSValue valueWithPointer:(__bridge void *)touch]] intValue];
CGPoint touchPoint = [touch locationInView:self];
touchPoint.x *= scaleFactor; // this has to be done because retina still returns points in 320x240 but with high percision
touchPoint.y *= scaleFactor;
touchPoint = [self orientateTouchPoint:touchPoint];
if( touchIndex==0 ){
window->events().notifyMouseDragged(touchPoint.x, touchPoint.y, 0);
}
ofTouchEventArgs touchArgs;
touchArgs.numTouches = [[event touchesForView:self] count];
touchArgs.x = touchPoint.x;
touchArgs.y = touchPoint.y;
touchArgs.id = touchIndex;
touchArgs.type = ofTouchEventArgs::move;
ofNotifyEvent(window->events().touchMoved, touchArgs);
}
}
//------------------------------------------------------
- (void)touchesEnded:(NSSet *)touches
withEvent:(UIEvent *)event{
if(!bInit || !bSetup) {
// if the glView is destroyed which also includes the OF app,
// we no longer need to pass on these touch events.
return;
}
for(UITouch *touch in touches){
int touchIndex = [[activeTouches objectForKey:[NSValue valueWithPointer:(__bridge void *)touch]] intValue];
[activeTouches removeObjectForKey:[NSValue valueWithPointer:(__bridge void *)touch]];
CGPoint touchPoint = [touch locationInView:self];
touchPoint.x *= scaleFactor; // this has to be done because retina still returns points in 320x240 but with high percision
touchPoint.y *= scaleFactor;
touchPoint = [self orientateTouchPoint:touchPoint];
if( touchIndex==0 ){
window->events().notifyMouseReleased(touchPoint.x, touchPoint.y, 0);
}
ofTouchEventArgs touchArgs;
touchArgs.numTouches = [[event touchesForView:self] count] - [touches count];
touchArgs.x = touchPoint.x;
touchArgs.y = touchPoint.y;
touchArgs.id = touchIndex;
touchArgs.type = ofTouchEventArgs::up;
ofNotifyEvent(window->events().touchUp, touchArgs);
}
}
//------------------------------------------------------
- (void)touchesCancelled:(NSSet *)touches
withEvent:(UIEvent *)event{
if(!bInit || !bSetup) {
// if the glView is destroyed which also includes the OF app,
// we no longer need to pass on these touch events.
return;
}
for(UITouch *touch in touches){
int touchIndex = [[activeTouches objectForKey:[NSValue valueWithPointer:(__bridge void *)touch]] intValue];
CGPoint touchPoint = [touch locationInView:self];
touchPoint.x *= scaleFactor; // this has to be done because retina still returns points in 320x240 but with high percision
touchPoint.y *= scaleFactor;
touchPoint = [self orientateTouchPoint:touchPoint];
ofTouchEventArgs touchArgs;
touchArgs.numTouches = [[event touchesForView:self] count];
touchArgs.x = touchPoint.x;
touchArgs.y = touchPoint.y;
touchArgs.id = touchIndex;
touchArgs.type = ofTouchEventArgs::cancel;
ofNotifyEvent(window->events().touchCancelled, touchArgs);
}
[self touchesEnded:touches withEvent:event];
}
@end
#endif