aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/drawstuff/src/osx.cpp
blob: fcecba907aef0379a167084dfabcbd86ed393b0b (plain)
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
/*************************************************************************
 *                                                                       *
 * Open Dynamics Engine, Copyright (C) 2001,2002 Russell L. Smith.       *
 * All rights reserved.  Email: russ@q12.org   Web: www.q12.org          *
 *                                                                       *
 * This library is free software; you can redistribute it and/or         *
 * modify it under the terms of EITHER:                                  *
 *   (1) The GNU Lesser General Public License as published by the Free  *
 *       Software Foundation; either version 2.1 of the License, or (at  *
 *       your option) any later version. The text of the GNU Lesser      *
 *       General Public License is included with this library in the     *
 *       file LICENSE.TXT.                                               *
 *   (2) The BSD-style license that is included with this library in     *
 *       the file LICENSE-BSD.TXT.                                       *
 *                                                                       *
 * This library is distributed in the hope that it will be useful,       *
 * but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files    *
 * LICENSE.TXT and LICENSE-BSD.TXT for more details.                     *
 *                                                                       *
 *************************************************************************/

// Platform-specific code for Mac OS X using Carbon+AGL
//
// Created using x11.cpp and the window-initialization -routines from GLFW
// as reference.
// Not thoroughly tested and is certain to contain deficiencies and bugs

#include <ode/config.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>

#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif

#include <drawstuff/drawstuff.h>
#include <drawstuff/version.h>
#include "internal.h"

#include <Carbon/Carbon.h>
#include <AGL/agl.h>

// Global variables

static bool running = true;			// 1 if simulation running
static bool paused = false;			// 1 if in `pause' mode
static bool singlestep = false;		// 1 if single step key pressed
static bool writeframes = false;	// 1 if frame files to be written

static int					   	windowWidth = -1;
static int					   	windowHeight = -1;
static UInt32 					modifierMask = 0;
static int 						mouseButtonMode = 0;	
static bool						mouseWithOption = false;	// Set if dragging the mouse with alt pressed
static bool						mouseWithControl = false;	// Set if dragging the mouse with ctrl pressed

static dsFunctions*			   	functions = NULL;
static WindowRef               	windowReference;
static AGLContext              	aglContext;

static EventHandlerUPP         	mouseUPP = NULL;
static EventHandlerUPP         	keyboardUPP = NULL;
static EventHandlerUPP         	windowUPP = NULL;

// Describes the window-events we are interested in
EventTypeSpec OSX_WINDOW_EVENT_TYPES[] = {		
	{ kEventClassWindow, kEventWindowBoundsChanged },
	{ kEventClassWindow, kEventWindowClose },
	{ kEventClassWindow, kEventWindowDrawContent }
};

// Describes the mouse-events we are interested in
EventTypeSpec OSX_MOUSE_EVENT_TYPES[] = {		
	{ kEventClassMouse, kEventMouseDown },
	{ kEventClassMouse, kEventMouseUp },
	{ kEventClassMouse, kEventMouseMoved },
	{ kEventClassMouse, kEventMouseDragged }
};

// Describes the key-events we are interested in
EventTypeSpec OSX_KEY_EVENT_TYPES[] = {		
	{ kEventClassKeyboard, kEventRawKeyDown },
//	{ kEventClassKeyboard, kEventRawKeyUp },
	{ kEventClassKeyboard, kEventRawKeyModifiersChanged }
};	

//***************************************************************************
// error handling for unix

static void printMessage (char *msg1, char *msg2, va_list ap)
{
  fflush (stderr);
  fflush (stdout);
  fprintf (stderr,"\n%s: ",msg1);
  vfprintf (stderr,msg2,ap);
  fprintf (stderr,"\n");
  fflush (stderr);
}

extern "C" void dsError (char *msg, ...)
{
  va_list ap;
  va_start (ap,msg);
  printMessage ("Error",msg,ap);
  exit (1);
}


extern "C" void dsDebug (char *msg, ...)
{
  va_list ap;
  va_start (ap,msg);
  printMessage ("INTERNAL ERROR",msg,ap);
  // *((char *)0) = 0;	 ... commit SEGVicide ?
  abort();
}

extern "C" void dsPrint (char *msg, ...)
{
  va_list ap;
  va_start (ap,msg);
  vprintf (msg,ap);
}

static void captureFrame( int num ){

  	fprintf( stderr,"\rcapturing frame %04d", num );
	unsigned char buffer[windowWidth*windowHeight][3];
	glReadPixels( 0, 0, windowWidth, windowHeight, GL_RGB, GL_UNSIGNED_BYTE, &buffer );
	char s[100];
	sprintf (s,"frame%04d.ppm",num);
	FILE *f = fopen (s,"wb");
	if( !f ){
		dsError( "can't open \"%s\" for writing", s );
	}
	fprintf( f,"P6\n%d %d\n255\n", windowWidth, windowHeight );
	for( int y=windowHeight-1; y>-1; y-- ){
		fwrite( buffer[y*windowWidth], 3*windowWidth, 1, f );
	}
	fclose (f);	
}

extern "C" void dsStop(){
	
  running = false;
}

extern "C" double dsElapsedTime()
{
#if HAVE_GETTIMEOFDAY
  static double prev=0.0;
  timeval tv ;

  gettimeofday(&tv, 0);
  double curr = tv.tv_sec + (double) tv.tv_usec / 1000000.0 ;
  if (!prev)
    prev=curr;
  double retval = curr-prev;
  prev=curr;
  if (retval>1.0) retval=1.0;
  if (retval<dEpsilon) retval=dEpsilon;
  return retval;
#else
  return 0.01666; // Assume 60 fps
#endif
}

OSStatus osxKeyEventHandler( EventHandlerCallRef handlerCallRef, EventRef event, void *userData ){
	
	UInt32 keyCode;
	UInt32 state = 0;
	void* KCHR = NULL;
	char charCode = 0;
	char uppercase = 0;
	
    switch( GetEventKind( event ) ){
        case kEventRawKeyDown:
			if( GetEventParameter( event, kEventParamKeyCode, typeUInt32, NULL, sizeof( UInt32 ), NULL, &keyCode ) != noErr ){
				break;														
			}
			KCHR = (void *)GetScriptVariable( smCurrentScript, smKCHRCache );
			charCode = (char)KeyTranslate( KCHR, keyCode, &state );
			uppercase = charCode;			
			UppercaseText( &uppercase, 1, smSystemScript );
			//printf( "Character %d [%c] [%c] modifiers [%d]\n", charCode, charCode, uppercase, modifierMask );
			
			if( modifierMask == 0 ){
				if( charCode >= ' ' && charCode <= 126 && functions -> command ){
					functions -> command( charCode );	
				}
			}
			else if( ( modifierMask & controlKey ) ){
				// ctrl+key was pressed
				switch(uppercase ){
					case 'T':
						dsSetTextures( !dsGetTextures() );
					break;
					case 'S':
						dsSetShadows( !dsGetShadows() );
					break;
					case 'X':
						running = false;
					break;
					case 'P':
						paused = !paused;
						singlestep = false;
					break;
					case 'O':
						if( paused ){
							singlestep = true;
						}
					break;
					case 'V': {
						float xyz[3],hpr[3];
						dsGetViewpoint( xyz,hpr );
						printf( "Viewpoint = (%.4f,%.4f,%.4f,%.4f,%.4f,%.4f)\n", xyz[0], xyz[1], xyz[2], hpr[0], hpr[1], hpr[2] );
					break;
					}
					case 'W':						
						writeframes = !writeframes;
						if( writeframes ){
							printf( "Now writing frames to PPM files\n" );
						}						 
					break;
				}
				
			}			
		return noErr;
        case kEventRawKeyModifiersChanged:
			if( GetEventParameter( event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof( UInt32 ), NULL, &modifierMask ) == noErr ){
				if( ( mouseWithOption && !( modifierMask & optionKey ) ) || ( mouseWithControl && !( modifierMask & controlKey ) ) ){
					// The mouse was being dragged using either the command-key or the option-key modifier to emulate 
					// the right button or both left + right.
					// Now the modifier-key has been released so the mouseButtonMode must be changed accordingly
					// The following releases the right-button.
					mouseButtonMode &= (~4);
					mouseWithOption = false;
					mouseWithControl = false;
				}
				return noErr;
			}
		break;		
    }	
    return eventNotHandledErr;
}

OSStatus osxMouseEventHandler( EventHandlerCallRef handlerCallRef, EventRef event, void *userData ){
	
	bool buttonDown = false;	
	HIPoint mouseLocation;

    switch( GetEventKind( event ) ){
		
        case kEventMouseDown:
			buttonDown = true;
        case kEventMouseUp:
			if( GetEventParameter( event, kEventParamWindowMouseLocation, typeHIPoint, NULL, sizeof( HIPoint ), NULL, &mouseLocation ) != noErr ){
				break;			
			}				
			EventMouseButton button;
			if( GetEventParameter( event, kEventParamMouseButton, typeMouseButton, NULL, sizeof( EventMouseButton ), NULL, &button ) == noErr ){
				
				if( button == kEventMouseButtonPrimary ){					
					if( modifierMask & controlKey ){
						// Ctrl+button == right
						button = kEventMouseButtonSecondary;
						mouseWithControl = true;
					}	
					else if( modifierMask & optionKey ){
						// Alt+button == left+right
						mouseButtonMode = 5;
						mouseWithOption = true;
						return noErr;
					}
				}
				if( buttonDown ){
					if( button == kEventMouseButtonPrimary ) mouseButtonMode |= 1;		// Left
					if( button == kEventMouseButtonTertiary ) mouseButtonMode |= 2;	// Middle				
					if( button == kEventMouseButtonSecondary ) mouseButtonMode |= 4;	// Right
				}
				else{
					if( button == kEventMouseButtonPrimary ) mouseButtonMode &= (~1);	// Left
					if( button == kEventMouseButtonTertiary ) mouseButtonMode &= (~2);	// Middle									
					if( button == kEventMouseButtonSecondary ) mouseButtonMode &= (~4);// Right
				}		
				return noErr;
			}
		break;
        case kEventMouseMoved:
			// NO-OP
			return noErr;
        case kEventMouseDragged:
			// Carbon provides mouse-position deltas, so we don't have to store the old state ourselves
			if( GetEventParameter( event, kEventParamMouseDelta, typeHIPoint, NULL, sizeof( HIPoint ), NULL, &mouseLocation ) == noErr ){
				//printf( "Mode %d\n", mouseButtonMode );
				dsMotion( mouseButtonMode, (int)mouseLocation.x, (int)mouseLocation.y );
				return noErr;
			}
        break;
        case kEventMouseWheelMoved:
			// NO-OP
		break;
    }	
    return eventNotHandledErr;
}

static void osxCloseMainWindow(){
	
	if( windowUPP != NULL ){
		DisposeEventHandlerUPP( windowUPP );
		windowUPP = NULL;
	}
	
	if( aglContext != NULL ){
		aglSetCurrentContext( NULL );
		aglSetDrawable( aglContext, NULL );
		aglDestroyContext( aglContext );
		aglContext = NULL;
	}
	
	if( windowReference != NULL ){
		ReleaseWindow( windowReference );
		windowReference = NULL;
	}
}

OSStatus osxWindowEventHandler( EventHandlerCallRef handlerCallRef, EventRef event, void *userData ){
	
	//printf( "WindowEvent\n" );
	switch( GetEventKind(event) ){
    	case kEventWindowBoundsChanged:
      		WindowRef window;
      		GetEventParameter( event, kEventParamDirectObject, typeWindowRef, NULL, sizeof(WindowRef), NULL, &window );
      		Rect rect;
      		GetWindowPortBounds( window, &rect );			
			windowWidth = rect.right;
			windowHeight = rect.bottom;
			aglUpdateContext( aglContext );
		break;			
    	case kEventWindowClose:
			osxCloseMainWindow();
			exit( 0 );
		return noErr;			
    	case kEventWindowDrawContent:
			// NO-OP
		break;
  	}
	
  	return eventNotHandledErr;
}

static void osxCreateMainWindow( int width, int height ){
	
	int redbits = 4;
	int greenbits = 4;
	int bluebits = 4;
	int alphabits = 4;
	int depthbits = 16;
	
    OSStatus error;
		
    // create pixel format attribute list
	
    GLint pixelFormatAttributes[256];
    int numAttrs = 0;
	
    pixelFormatAttributes[numAttrs++] = AGL_RGBA;
    pixelFormatAttributes[numAttrs++] = AGL_DOUBLEBUFFER;

    pixelFormatAttributes[numAttrs++] = AGL_RED_SIZE;
	pixelFormatAttributes[numAttrs++] = redbits;
    pixelFormatAttributes[numAttrs++] = AGL_GREEN_SIZE;
	pixelFormatAttributes[numAttrs++] = greenbits;
    pixelFormatAttributes[numAttrs++] = AGL_BLUE_SIZE;        
	pixelFormatAttributes[numAttrs++] = bluebits;
	pixelFormatAttributes[numAttrs++] = AGL_ALPHA_SIZE;       
	pixelFormatAttributes[numAttrs++] = alphabits;
	pixelFormatAttributes[numAttrs++] = AGL_DEPTH_SIZE;       
	pixelFormatAttributes[numAttrs++] = depthbits;

    pixelFormatAttributes[numAttrs++] = AGL_NONE;
	
    // create pixel format.
	
    AGLDevice mainMonitor = GetMainDevice();
    AGLPixelFormat pixelFormat = aglChoosePixelFormat( &mainMonitor, 1, pixelFormatAttributes );
    if( pixelFormat == NULL ){
        return;
    }
		
    aglContext = aglCreateContext( pixelFormat, NULL );
	
    aglDestroyPixelFormat( pixelFormat );
	
    if( aglContext == NULL ){
        osxCloseMainWindow();
		return;
    }
	
    Rect windowContentBounds;
    windowContentBounds.left = 0;
    windowContentBounds.top = 0;
    windowContentBounds.right = width;
    windowContentBounds.bottom = height;
	
	int windowAttributes = kWindowCloseBoxAttribute  
		| kWindowFullZoomAttribute
		| kWindowCollapseBoxAttribute 
	 	| kWindowResizableAttribute 
	 	| kWindowStandardHandlerAttribute
		| kWindowLiveResizeAttribute;
	
    error = CreateNewWindow( kDocumentWindowClass, windowAttributes, &windowContentBounds, &windowReference );
    if( ( error != noErr ) || ( windowReference == NULL ) ){
        osxCloseMainWindow();
		return;
    }
	
	windowUPP = NewEventHandlerUPP( osxWindowEventHandler );
		
	error = InstallWindowEventHandler( windowReference, windowUPP,GetEventTypeCount( OSX_WINDOW_EVENT_TYPES ), OSX_WINDOW_EVENT_TYPES, NULL, NULL );
	if( error != noErr ){
		osxCloseMainWindow();
		return;
	}
	
	// The process-type must be changed for a ForegroundApplication
	// Unless it is a foreground-process, the application will not show in the dock or expose and the window
	// will not behave properly.
	ProcessSerialNumber currentProcess;
	GetCurrentProcess( &currentProcess );
	TransformProcessType( &currentProcess, kProcessTransformToForegroundApplication );
	SetFrontProcess( &currentProcess );
	
    SetWindowTitleWithCFString( windowReference, CFSTR( "ODE - Drawstuff" ) );
    RepositionWindow( windowReference, NULL, kWindowCenterOnMainScreen );
	
    ShowWindow( windowReference );
	
	if( !aglSetDrawable( aglContext, GetWindowPort( windowReference ) ) ){
		osxCloseMainWindow();
		return;
	}
	
    if( !aglSetCurrentContext( aglContext ) ){
        osxCloseMainWindow();
    }	
	
	windowWidth = width;
	windowHeight = height;
}

int  osxInstallEventHandlers(){

    OSStatus error;
	
    mouseUPP = NewEventHandlerUPP( osxMouseEventHandler );
	
    error = InstallEventHandler( GetApplicationEventTarget(), mouseUPP, GetEventTypeCount( OSX_MOUSE_EVENT_TYPES ), OSX_MOUSE_EVENT_TYPES, NULL, NULL );
    if( error != noErr ){
        return GL_FALSE;
    }

    keyboardUPP = NewEventHandlerUPP( osxKeyEventHandler );
	
    error = InstallEventHandler( GetApplicationEventTarget(), keyboardUPP, GetEventTypeCount( OSX_KEY_EVENT_TYPES ), OSX_KEY_EVENT_TYPES, NULL, NULL );
    if( error != noErr ){
        return GL_FALSE;
    }
	
    return GL_TRUE;
}

extern void dsPlatformSimLoop( int givenWindowWidth, int givenWindowHeight, dsFunctions *fn, int givenPause ){
	
	functions = fn;
	
	paused = givenPause;
	
	osxCreateMainWindow( givenWindowWidth, givenWindowHeight );
	osxInstallEventHandlers();
	
	dsStartGraphics( windowWidth, windowHeight, fn );
	
	static bool firsttime=true;
	if( firsttime )
	{
		fprintf
		(
		 stderr,
		 "\n"
		 "Simulation test environment v%d.%02d\n"
		 "   Ctrl-P : pause / unpause (or say `-pause' on command line).\n"
		 "   Ctrl-O : single step when paused.\n"
		 "   Ctrl-T : toggle textures (or say `-notex' on command line).\n"
		 "   Ctrl-S : toggle shadows (or say `-noshadow' on command line).\n"
		 "   Ctrl-V : print current viewpoint coordinates (x,y,z,h,p,r).\n"
		 "   Ctrl-W : write frames to ppm files: frame/frameNNN.ppm\n"
		 "   Ctrl-X : exit.\n"
		 "\n"
		 "Change the camera position by clicking + dragging in the window.\n"
		 "   Left button - pan and tilt.\n"
		 "   Right button (or Ctrl + button) - forward and sideways.\n"
		 "   Left + Right button (or middle button, or Alt + button) - sideways and up.\n"
		 "\n",DS_VERSION >> 8,DS_VERSION & 0xff
		 );
		firsttime = false;
	}
	
	if( fn -> start ) fn->start();
	
	int frame = 1;
	running = true;
	while( running ){
		// read in and process all pending events for the main window
		EventRef event;
		EventTargetRef eventDispatcher = GetEventDispatcherTarget();		
		while( ReceiveNextEvent( 0, NULL, 0.0, TRUE, &event ) == noErr ){
			SendEventToEventTarget( event, eventDispatcher );
			ReleaseEvent( event );
		}
				
		dsDrawFrame( windowWidth, windowHeight, fn, paused && !singlestep );
		singlestep = false;
		
		glFlush();
		aglSwapBuffers( aglContext );

		// capture frames if necessary
		if( !paused && writeframes ){
			captureFrame( frame );
			frame++;
		}
	}
	
	if( fn->stop ) fn->stop();
	dsStopGraphics();
	
	osxCloseMainWindow();
}