mnit: update all clients of `mnit_android` with custom orientations
[nit.git] / examples / mnit_moles / src / moles_android.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012-2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 module moles_android
18
19 import mnit_android
20 import android::portrait
21
22 import moles
23
24 redef class Game
25 redef fun columns do return 3
26 redef fun rows do return 5
27 end
28
29 redef class App
30 redef fun init_screen_and_game
31 do
32 # We use as a reference the Moto X
33 var tw = 720
34 var th = 1184
35
36 # Calculate the scale to fit a Moto X screen in this device screen
37 var xs = display.width.to_f/tw.to_f*0.4
38 var ys = display.height.to_f/th.to_f*0.4
39
40 # Use the smaller scale so everything fits
41 # FIXME replace these conditions with xs.min(ys) when Float isa Comparable
42 if xs < ys then
43 display_scale_container.item = xs
44 else display_scale_container.item = ys
45
46 super
47 end
48 end
49
50 fun display_scale_container: Container[Float] do return once new Container[Float](0.1)
51 redef fun display_scale do return display_scale_container.item
52 redef fun display_offset_x: Int do return (300.0*display_scale).to_i
53 redef fun display_offset_y: Int do return (800.0*display_scale).to_i