Difference between revisions of "TntVirtualPad"

From GiderosMobile
Line 84: Line 84:
 
=== Events ===
 
=== Events ===
 
<!--[[Event.ADDED_TO_STAGE]]<br/>--><!-- GIDEROSEVT:Event.ADDED_TO_STAGE addedToStage-->
 
<!--[[Event.ADDED_TO_STAGE]]<br/>--><!-- GIDEROSEVT:Event.ADDED_TO_STAGE addedToStage-->
[[PAD.LEFTPAD_EVENT]]<br/><!-- GIDEROSEVT:PAD.LEFTPAD_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.LEFTPAD_EVENT]]<br/><!-- GIDEROSEVT:PAD.LEFTPAD_EVENT-->
[[PAD.RIGHTPAD_EVENT]]<br/><!-- GIDEROSEVT:PAD.RIGHTPAD_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.RIGHTPAD_EVENT]]<br/><!-- GIDEROSEVT:PAD.RIGHTPAD_EVENT-->
  
[[PAD.BUTTON1_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON1_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON1_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON1_EVENT-->
[[PAD.BUTTON2_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON2_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON2_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON2_EVENT-->
[[PAD.BUTTON3_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON3_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON3_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON3_EVENT-->
[[PAD.BUTTON4_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON4_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON4_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON4_EVENT-->
[[PAD.BUTTON5_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON5_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON5_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON5_EVENT-->
[[PAD.BUTTON6_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON6_EVENT-->
+
[[CTNTVirtualPad.Event|PAD.BUTTON6_EVENT]]<br/><!-- GIDEROSEVT:PAD.BUTTON6_EVENT-->
  
 
=== Constants ===
 
=== Constants ===

Revision as of 14:46, 3 December 2020

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2019.4

Description

Adds a virtual pad to your game/app screen.

You can find the graphics for the pads and the text file that comes with it:

TNTVirtualPad.png

Examples

Add a virtual pad to your scene

require "tntvirtualpad"

LevelX = Core.class(Sprite)

function LevelX:init()
	-- bg
	application:setBackgroundColor(0x0099a0)
	-- tnt virtual pad
	local texturevpad = TexturePack.new("gfx/UI/TNTVirtualPad.txt", "gfx/UI/TNTVirtualPadX.png", true)
	self.vPad = CTNTVirtualPad.new(self, texturevpad, PAD.STICK_SINGLE, PAD.BUTTONS_ONE, 100, 0)
	self.vPad:setJoyStyle(PAD.COMPO_LEFTPAD, PAD.STYLE_FOLLOW)
	self.vPad:setScale(PAD.COMPO_LEFTPAD, 1)
	self.vPad:setScale(PAD.COMPO_BUTTON1, 1)
	self.vPad:setHideDelay(5000)
	self.vPad:start()
	-- tnt virtual pad listeners
	self.vPad:addEventListener(PAD.LEFTPAD_EVENT, self.onVKeyDown, self)
	self.vPad:addEventListener(PAD.BUTTON1_EVENT, self.vShoot, self)
end

-- VIRTUAL PAD HANDLER
function LevelX:onVKeyDown(event)
	print(event.data.power)
	print(event.data.angle)
	print(math.cos(event.data.angle))
	print(math.sin(event.data.angle))
	-- example usage
	--self.player.posx += self.player.vx * math.cos(event.data.angle)
	--self.player.posy += self.player.vy * math.sin(event.data.angle)
	--if math.cos(event.data.angle) < 0 then self.player:setSkew(5, -5)
	--elseif math.cos(event.data.angle) > 0 then self.player:setSkew(-5, 5)
	--else self.player:setSkew(0, 0)
	--end
end

function LevelX:vShoot(event)
	if event.data.state == PAD.STATE_BEGIN then
		-- example usage
		--local missile = Missiles.new(self.player.posx, self.player.posy - 12)
		--table.insert(self.missiles_list, missile)
	end
end

Methods

CTNTVirtualPad.new creates a new VPAD object class

CTNTVirtualPad:free frees the VPAD
CTNTVirtualPad:setAlpha sets VPAD alpha values
CTNTVirtualPad:setColor sets VPAD colors
CTNTVirtualPad:setDefaultButtonSprites sets VPAD default buttons sprites !warning!
CTNTVirtualPad:setDefaultJoySprites sets VPAD default joysticks sprites !warning!
CTNTVirtualPad:setHideDelay sets VPAD hide delay
CTNTVirtualPad:setHideMode sets VPAD hide mode
CTNTVirtualPad:setJoyAsAnalog sets VPAD joysticks analog mode
CTNTVirtualPad:setJoyStyle sets VPAD joysticks movement style
CTNTVirtualPad:setMaxRadius sets VPAD max touch radius
CTNTVirtualPad:setPosition sets VPAD joysticks positions
CTNTVirtualPad:setScale sets VPAD joysticks scale
CTNTVirtualPad:setTextures sets VPAD components textures
CTNTVirtualPad:start starts the VPAD
CTNTVirtualPad:stop stops the VPAD

Events

PAD.LEFTPAD_EVENT
PAD.RIGHTPAD_EVENT

PAD.BUTTON1_EVENT
PAD.BUTTON2_EVENT
PAD.BUTTON3_EVENT
PAD.BUTTON4_EVENT
PAD.BUTTON5_EVENT
PAD.BUTTON6_EVENT

Constants

PAD.BUTTONS_NONE
PAD.BUTTONS_ONE
PAD.BUTTONS_TWO
PAD.BUTTONS_THREE
PAD.BUTTONS_FOUR
PAD.BUTTONS_FIVE
PAD.BUTTONS_SIX

PAD.COMPO_BUTTON1
PAD.COMPO_BUTTON2
PAD.COMPO_BUTTON3
PAD.COMPO_BUTTON4
PAD.COMPO_BUTTON5
PAD.COMPO_BUTTON6
PAD.COMPO_LEFTPAD
PAD.COMPO_RIGHTPAD

PAD.MODE_NOHIDE
PAD.MODE_GHOST
PAD.MODE_HIDDEN

PAD.STICK_NONE
PAD.STICK_SINGLE
PAD.STICK_DOUBLE

PAD.STYLE_CLASSIC
PAD.STYLE_MOVABLE
PAD.STYLE_FOLLOW