comparison import/myrrdin/consumers/consumer.d @ 8:156a95e4c018

final package structure now, i hope
author fred@reichbier.de
date Sat, 19 Jul 2008 17:26:41 +0200
parents import/myrrdin/consumer.d@510541745cd1
children 79b534bbda65
comparison
equal deleted inserted replaced
7:806b3781f4e4 8:156a95e4c018
1 /*
2 myrrdin, a 2d tile engine
3 Copyright (c) 2008 Friedrich Weber
4
5 Permission is hereby granted, free of charge, to any person obtaining a copy
6 of this software and associated documentation files (the "Software"), to deal
7 in the Software without restriction, including without limitation the rights
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 copies of the Software, and to permit persons to whom the Software is
10 furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 THE SOFTWARE.
22 */
23
24 module myrrdin.consumers.consumer;
25
26 import dsfml.window.all;
27 import dsfml.system.all;
28 import dsfml.graphics.all;
29
30 import myrrdin.renderer;
31
32 class Consumer {
33 protected Renderer renderer;
34
35 this(Renderer renderer) {
36 this.renderer = renderer;
37 }
38
39 /* handle the event `evt`. Return true if the event was handled and should not
40 be propagated any further, otherwise false */
41 bool handle_event(Event evt) {
42 return false;
43 }
44
45 /* draw all the content of this with this.app.draw(stuff) */
46 void draw() {
47
48 }
49
50 /* called for each loop iteration */
51 void loop_iteration() {
52
53 }
54 }