| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  os_iphone.h                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-01-01 11:50:53 -02:00
										 |  |  | /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #ifdef IPHONE_ENABLED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OS_IPHONE_H
 | 
					
						
							|  |  |  | #define OS_IPHONE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "os/input.h"
 | 
					
						
							|  |  |  | #include "drivers/unix/os_unix.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "servers/visual_server.h"
 | 
					
						
							|  |  |  | #include "servers/visual/rasterizer.h"
 | 
					
						
							|  |  |  | #include "servers/physics/physics_server_sw.h"
 | 
					
						
							|  |  |  | #include "servers/physics_2d/physics_2d_server_sw.h"
 | 
					
						
							| 
									
										
										
										
											2015-05-26 01:05:08 -03:00
										 |  |  | #include "servers/physics_2d/physics_2d_server_wrap_mt.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "servers/audio/audio_server_sw.h"
 | 
					
						
							|  |  |  | #include "servers/audio/sample_manager_sw.h"
 | 
					
						
							|  |  |  | #include "servers/spatial_sound/spatial_sound_server_sw.h"
 | 
					
						
							|  |  |  | #include "servers/spatial_sound_2d/spatial_sound_2d_server_sw.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-24 18:06:15 -03:00
										 |  |  | #include "main/input_default.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "game_center.h"
 | 
					
						
							|  |  |  | #include "in_app_store.h"
 | 
					
						
							| 
									
										
										
										
											2015-09-27 16:54:20 -07:00
										 |  |  | #include "icloud.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-24 18:06:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class AudioDriverIphone; | 
					
						
							|  |  |  | class RasterizerGLES2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class OSIPhone : public OS_Unix { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Orientations { | 
					
						
							|  |  |  | 		PortraitDown, | 
					
						
							|  |  |  | 		PortraitUp, | 
					
						
							|  |  |  | 		LandscapeLeft, | 
					
						
							|  |  |  | 		LandscapeRight, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum { | 
					
						
							|  |  |  | 			MAX_MOUSE_COUNT = 8, | 
					
						
							|  |  |  | 			MAX_EVENTS = 64, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint8_t supported_orientations; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Rasterizer *rasterizer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	RasterizerGLES2* rasterizer_gles22; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VisualServer *visual_server; | 
					
						
							|  |  |  | 	PhysicsServer* physics_server; | 
					
						
							|  |  |  | 	Physics2DServer *physics_2d_server; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	AudioServerSW *audio_server; | 
					
						
							|  |  |  | 	SampleManagerMallocSW *sample_manager; | 
					
						
							|  |  |  | 	SpatialSoundServerSW *spatial_sound_server; | 
					
						
							|  |  |  | 	SpatialSound2DServerSW *spatial_sound_2d_server; | 
					
						
							|  |  |  | 	AudioDriverIphone* audio_driver; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef GAME_CENTER_ENABLED
 | 
					
						
							|  |  |  | 	GameCenter* game_center; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef STOREKIT_ENABLED
 | 
					
						
							|  |  |  | 	InAppStore* store_kit; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-09-27 16:54:20 -07:00
										 |  |  | #ifdef ICLOUD_ENABLED
 | 
					
						
							|  |  |  | 	ICloud* icloud; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	MainLoop *main_loop; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VideoMode video_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual int get_video_driver_count() const; | 
					
						
							|  |  |  | 	virtual const char * get_video_driver_name(int p_driver) const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual VideoMode get_default_video_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void initialize_core(); | 
					
						
							|  |  |  | 	virtual void initialize(const VideoMode& p_desired,int p_video_driver,int p_audio_driver); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_main_loop( MainLoop * p_main_loop ); | 
					
						
							|  |  |  | 	virtual MainLoop *get_main_loop() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void delete_main_loop(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void finalize(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct MouseList { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bool pressed[MAX_MOUSE_COUNT]; | 
					
						
							|  |  |  | 		MouseList() { | 
					
						
							|  |  |  | 			for (int i=0; i<MAX_MOUSE_COUNT; i++) | 
					
						
							|  |  |  | 				pressed[i] = false; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	MouseList mouse_list; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Vector3 last_accel; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	InputEvent event_queue[MAX_EVENTS]; | 
					
						
							|  |  |  | 	int event_count; | 
					
						
							|  |  |  | 	int last_event_id; | 
					
						
							|  |  |  | 	void queue_event(const InputEvent& p_event); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String data_dir; | 
					
						
							|  |  |  | 	String unique_ID; | 
					
						
							|  |  |  | 	String locale_code; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	InputDefault *input; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool iterate(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint8_t get_orientations() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void mouse_button(int p_idx, int p_x, int p_y, bool p_pressed, bool p_doubleclick, bool p_use_as_mouse); | 
					
						
							|  |  |  | 	void mouse_move(int p_idx, int p_prev_x, int p_prev_y, int p_x, int p_y, bool p_use_as_mouse); | 
					
						
							|  |  |  | 	void touches_cancelled(); | 
					
						
							|  |  |  | 	void key(uint32_t p_key, bool p_pressed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int set_base_framebuffer(int p_fb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void update_accelerometer(float p_x, float p_y, float p_z); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	static OSIPhone* get_singleton(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_mouse_show(bool p_show); | 
					
						
							|  |  |  | 	virtual void set_mouse_grab(bool p_grab); | 
					
						
							|  |  |  | 	virtual bool is_mouse_grab_enabled() const; | 
					
						
							|  |  |  | 	virtual Point2 get_mouse_pos() const; | 
					
						
							|  |  |  | 	virtual int get_mouse_button_state() const; | 
					
						
							|  |  |  | 	virtual void set_window_title(const String& p_title); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_video_mode(const VideoMode& p_video_mode,int p_screen=0); | 
					
						
							|  |  |  | 	virtual VideoMode get_video_mode(int p_screen=0) const; | 
					
						
							|  |  |  | 	virtual void get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen=0) const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 13:18:21 +09:00
										 |  |  | 	virtual void set_keep_screen_on(bool p_enabled); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual bool can_draw() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual bool has_virtual_keyboard() const; | 
					
						
							|  |  |  | 	virtual void show_virtual_keyboard(const String& p_existing_text,const Rect2& p_screen_rect=Rect2()); | 
					
						
							|  |  |  | 	virtual void hide_virtual_keyboard(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void set_cursor_shape(CursorShape p_shape); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-23 18:55:45 -07:00
										 |  |  | 	virtual Size2 get_window_size() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual bool has_touchscreen_ui_hint() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_data_dir(String p_dir); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual String get_name(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Error shell_open(String p_uri); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	String get_data_dir() const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void set_locale(String p_locale); | 
					
						
							|  |  |  | 	String get_locale() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_unique_ID(String p_ID); | 
					
						
							|  |  |  | 	String get_unique_ID() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 15:09:06 +11:00
										 |  |  | 	virtual Error native_video_play(String p_path, float p_volume, String p_audio_track, String p_subtitle_track); | 
					
						
							|  |  |  | 	virtual bool native_video_is_playing() const; | 
					
						
							|  |  |  | 	virtual void native_video_pause(); | 
					
						
							| 
									
										
										
										
											2014-11-26 14:24:13 -03:00
										 |  |  | 	virtual void native_video_unpause(); | 
					
						
							| 
									
										
										
										
											2014-12-02 14:02:41 -03:00
										 |  |  | 	virtual void native_video_focus_out(); | 
					
						
							| 
									
										
										
										
											2016-02-19 15:09:06 +11:00
										 |  |  | 	virtual void native_video_stop(); | 
					
						
							| 
									
										
										
										
											2014-03-13 22:57:24 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	OSIPhone(int width, int height); | 
					
						
							|  |  |  | 	~OSIPhone(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // OS_IPHONE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |