lib/mnit: move mnit implementations as submodules
[nit.git] / lib / mnit / linux / linux_app.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2011-2013 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 linux_app
18
19 import mnit
20 import sdl
21 import linux_opengles1
22 import linux
23
24 in "C" `{
25 #include <EGL/egl.h>
26 `}
27
28 redef class App
29 redef type D: Opengles1Display
30 redef type I: Opengles1Image
31
32 redef fun setup
33 do
34 if "NIT_TESTING".environ == "true" then exit 0
35 display = new Opengles1Display
36
37 super
38
39 on_create
40 on_restore_state
41 on_start
42 on_resume
43 end
44
45 redef fun run
46 do
47 super
48
49 on_pause
50 on_save_state
51 on_stop
52 on_destroy
53 end
54
55 redef fun generate_input
56 do
57 for event in display.sdl_display.events do
58 input( event )
59 end
60 end
61 end