Difference between revisions of "Hardware and OS"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 21: Line 21:
 
== Multitouch ==
 
== Multitouch ==
 
The easiest way to detect if the player touches the screen with two fingers, is to control the length of event.allTouches array. If it is 2, then exactly 2 fingers is touching the screen.
 
The easiest way to detect if the player touches the screen with two fingers, is to control the length of event.allTouches array. If it is 2, then exactly 2 fingers is touching the screen.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local function onTouchesBegin(event)
 
local function onTouchesBegin(event)
 
   local isTwoFinger = (#event.allTouches == 2)
 
   local isTwoFinger = (#event.allTouches == 2)
Line 35: Line 35:
 
== Vibration ==
 
== Vibration ==
 
Gideros Studio provides a function for vibration. Consider the following example:
 
Gideros Studio provides a function for vibration. Consider the following example:
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
application:vibrate()  
 
application:vibrate()  
 
</source>
 
</source>
Line 43: Line 43:
 
== Disabling screen dimming ==
 
== Disabling screen dimming ==
 
Some games may require that player doesn't touch the screen for a long time, e.g. those using accelerometer and gyro to control the actors on the screen. In this case, the screen may dim, depending on the user's activity and device settings. To disable (or enable) screen dimming, use the following commands:
 
Some games may require that player doesn't touch the screen for a long time, e.g. those using accelerometer and gyro to control the actors on the screen. In this case, the screen may dim, depending on the user's activity and device settings. To disable (or enable) screen dimming, use the following commands:
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
-- disable screen dimming and device sleeping
 
-- disable screen dimming and device sleeping
 
application:setKeepAwake(true)
 
application:setKeepAwake(true)

Revision as of 15:28, 13 July 2023

The Ultimate Guide to Gideros Studio

Hardware and OS

Introduction to hardware system

Getting logical dimensions

Getting device dimensions

Getting system information

Getting and setting orientation

Localization and language

Handling touch and mouse input

Multitouch

The easiest way to detect if the player touches the screen with two fingers, is to control the length of event.allTouches array. If it is 2, then exactly 2 fingers is touching the screen. <syntaxhighlight lang="lua"> local function onTouchesBegin(event)

 local isTwoFinger = (#event.allTouches == 2)

end </source>

Gyroscope

Accelerometer

GPS and location

Vibration

Gideros Studio provides a function for vibration. Consider the following example: <syntaxhighlight lang="lua"> application:vibrate() </source>

The vibration period is 300 ms for Android. For iOS, device vibrates for a duration which is determined by the operating system.

Disabling screen dimming

Some games may require that player doesn't touch the screen for a long time, e.g. those using accelerometer and gyro to control the actors on the screen. In this case, the screen may dim, depending on the user's activity and device settings. To disable (or enable) screen dimming, use the following commands: <syntaxhighlight lang="lua"> -- disable screen dimming and device sleeping application:setKeepAwake(true) -- enable screen dimming and device sleeping application:setKeepAwake(false) </source>

Note: this function has no effect on desktop player.


PREV.: Profiling
NEXT: Making a Plugin