Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
201 lines (162 loc) · 4.48 KB

SDL_cocoamouse.m

File metadata and controls

201 lines (162 loc) · 4.48 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This library is free software; you can redistribute it and/or
modify it under the terms of 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.
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 GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
Dec 3, 2009
Dec 3, 2009
24
#include "SDL_events.h"
25
26
27
28
#include "SDL_cocoavideo.h"
#include "../../events/SDL_mouse_c.h"
Feb 22, 2011
Feb 22, 2011
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
static SDL_Cursor *
Cocoa_CreateDefaultCursor()
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSCursor *nscursor;
SDL_Cursor *cursor = NULL;
nscursor = [NSCursor arrowCursor];
if (nscursor) {
cursor = SDL_calloc(1, sizeof(*cursor));
if (cursor) {
cursor->driverdata = nscursor;
[nscursor retain];
}
}
[pool release];
return cursor;
}
static SDL_Cursor *
Cocoa_CreateCursor(SDL_Surface * surface, int hot_x, int hot_y)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSImage *nsimage;
NSCursor *nscursor = NULL;
SDL_Cursor *cursor = NULL;
nsimage = Cocoa_CreateImage(surface);
if (nsimage) {
nscursor = [[NSCursor alloc] initWithImage: nsimage hotSpot: NSMakePoint(hot_x, hot_y)];
}
if (nscursor) {
cursor = SDL_calloc(1, sizeof(*cursor));
if (cursor) {
cursor->driverdata = nscursor;
}
}
[pool release];
return cursor;
}
static void
Cocoa_FreeCursor(SDL_Cursor * cursor)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSCursor *nscursor = (NSCursor *)cursor->driverdata;
[nscursor release];
[pool release];
}
static int
Cocoa_ShowCursor(SDL_Cursor * cursor)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
if (SDL_GetMouseFocus()) {
if (cursor) {
Feb 22, 2011
Feb 22, 2011
95
96
97
NSCursor *nscursor = (NSCursor *)cursor->driverdata;
[nscursor set];
Feb 22, 2011
Feb 22, 2011
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[NSCursor unhide];
} else {
[NSCursor hide];
}
}
[pool release];
return 0;
}
static void
Cocoa_WarpMouse(SDL_Window * window, int x, int y)
{
CGPoint point;
Feb 23, 2011
Feb 23, 2011
114
115
point.x = (float)window->x + x;
point.y = (float)window->y + y;
Feb 22, 2011
Feb 22, 2011
116
117
118
CGWarpMouseCursorPosition(point);
}
Feb 28, 2011
Feb 28, 2011
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
static int
Cocoa_SetRelativeMouseMode(SDL_bool enabled)
{
CGError result;
if (enabled) {
result = CGAssociateMouseAndMouseCursorPosition(NO);
} else {
result = CGAssociateMouseAndMouseCursorPosition(YES);
}
if (result != kCGErrorSuccess) {
SDL_SetError("CGAssociateMouseAndMouseCursorPosition() failed");
return -1;
}
return 0;
}
136
137
138
void
Cocoa_InitMouse(_THIS)
{
Feb 22, 2011
Feb 22, 2011
139
140
141
142
143
SDL_Mouse *mouse = SDL_GetMouse();
mouse->CreateCursor = Cocoa_CreateCursor;
mouse->ShowCursor = Cocoa_ShowCursor;
mouse->FreeCursor = Cocoa_FreeCursor;
Feb 28, 2011
Feb 28, 2011
144
145
mouse->WarpMouse = Cocoa_WarpMouse;
mouse->SetRelativeMouseMode = Cocoa_SetRelativeMouseMode;
Feb 22, 2011
Feb 22, 2011
146
Feb 28, 2011
Feb 28, 2011
147
SDL_SetDefaultCursor(Cocoa_CreateDefaultCursor());
Dec 3, 2009
Dec 3, 2009
150
151
152
153
154
155
156
157
158
159
160
161
static int
ConvertMouseButtonToSDL(int button)
{
switch (button)
{
case 0:
return(SDL_BUTTON_LEFT); /* 1 */
case 1:
return(SDL_BUTTON_RIGHT); /* 3 */
case 2:
return(SDL_BUTTON_MIDDLE); /* 2 */
}
Jan 21, 2011
Jan 21, 2011
162
return button+1;
Dec 3, 2009
Dec 3, 2009
163
164
165
166
167
}
void
Cocoa_HandleMouseEvent(_THIS, NSEvent *event)
{
Feb 28, 2011
Feb 28, 2011
168
169
170
171
172
173
174
SDL_Mouse *mouse = SDL_GetMouse();
if (mouse->relative_mode && [event type] == NSMouseMoved) {
float x = [event deltaX];
float y = [event deltaY];
SDL_SendMouseMotion(mouse->focus, 1, (int)x, (int)y);
}
Dec 3, 2009
Dec 3, 2009
175
176
}
Jan 20, 2011
Jan 20, 2011
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
void
Cocoa_HandleMouseWheel(SDL_Window *window, NSEvent *event)
{
float x = [event deltaX];
float y = [event deltaY];
if (x > 0) {
x += 0.9f;
} else if (x < 0) {
x -= 0.9f;
}
if (y > 0) {
y += 0.9f;
} else if (y < 0) {
y -= 0.9f;
}
SDL_SendMouseWheel(window, (int)x, (int)y);
}
Jan 21, 2011
Jan 21, 2011
196
197
198
199
200
void
Cocoa_QuitMouse(_THIS)
{
}
201
/* vi: set ts=4 sw=4 expandtab: */