action_nitro: intro Android client with gamepad and icon
[nit.git] / contrib / action_nitro / src / touch_ui.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import gamnit::virtual_gamepad
16
17 import action_nitro
18
19 redef class App
20 redef fun on_create
21 do
22 super
23
24 var gamepad = new VirtualGamepad
25 gamepad.add_dpad(["up","left","down","right"])
26 gamepad.add_dpad(["w","a","s","d"])
27 gamepad.add_button("space", planes_sheet.open_chute)
28 self.gamepad = gamepad
29 end
30
31 redef fun begin_play(initial)
32 do
33 super
34
35 var gamepad = self.gamepad
36 if gamepad != null then gamepad.visible = true
37 end
38 end