7bc03a05192617af4eae43edd29965c331f99138
[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 end
39
40 redef fun generate_input
41 do
42 for event in display.sdl_display.events do
43 input( event )
44 end
45 end
46 end