cocoaTouch/SDLOverrides/SDL_uikitview.h
author koda
Fri, 05 Feb 2010 00:43:56 +0000
changeset 2754 ad4f81fbfb76
parent 2738 bfccb2ec4334
child 2772 1965eba10be6
permissions -rw-r--r--
touchinput works, invisible buttons added and initial support for chat
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     1
/*
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     2
 SDL - Simple DirectMedia Layer
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     3
 Copyright (C) 1997-2009 Sam Lantinga
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     4
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     5
 This library is free software; you can redistribute it and/or
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     6
 modify it under the terms of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     7
 License as published by the Free Software Foundation; either
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     8
 version 2.1 of the License, or (at your option) any later version.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     9
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    10
 This library is distributed in the hope that it will be useful,
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    13
 Lesser General Public License for more details.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    14
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    15
 You should have received a copy of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    16
 License along with this library; if not, write to the Free Software
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    17
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    18
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    19
 Sam Lantinga, mods for Hedgewars by Vittorio Giovara
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    20
 slouken@libsdl.org, vittorio.giovara@gmail.com
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    21
 */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    22
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    23
#import <UIKit/UIKit.h>
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    24
#include "SDL_stdinc.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    25
#include "SDL_mouse.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    26
#include "SDL_mouse_c.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    27
#include "SDL_events.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    28
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    29
#import "CGPointUtils.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    30
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    31
#if SDL_IPHONE_MULTIPLE_MICE
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    32
#define MAX_SIMULTANEOUS_TOUCHES 5
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    33
#else
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    34
#define MAX_SIMULTANEOUS_TOUCHES 1
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    35
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    36
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    37
/* *INDENT-OFF* */
2724
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    38
#if SDL_IPHONE_KEYBOARD
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    39
@interface SDL_uikitview : UIView<UITextFieldDelegate> {
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    40
#else
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    41
@interface SDL_uikitview : UIView {
2724
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    42
#endif
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    43
	SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
2725
89908847b155 input handling reworked, still a lot of bugs in mouse movement
koda
parents: 2724
diff changeset
    44
	CGFloat initialDistanceForPinching;
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    45
	CGPoint gestureStartPoint;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    46
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    47
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    48
	UITextField *textField;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    49
	BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    50
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    51
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    52
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    53
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    54
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    55
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    56
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    57
// see initWithFrame for why "+"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    58
+(void) attackButtonPressed;
2754
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    59
+(void) buttonsReleased;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    60
+(void) walkingLeft;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    61
+(void) walkingRight;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    62
+(void) movingUp;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    63
+(void) movingDown;
ad4f81fbfb76 touchinput works, invisible buttons added and initial support for chat
koda
parents: 2738
diff changeset
    64
+(void) chatBegin;
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    65
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    66
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    67
- (void)showKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    68
- (void)hideKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    69
- (void)initializeKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    70
@property (readonly) BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    71
#endif 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    72
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    73
@end
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    74
/* *INDENT-ON* */