annotate import/myrrdin/consumers/tile.d @ 10:79b534bbda65

new director model
author fred@reichbier.de
date Sat, 19 Jul 2008 19:29:00 +0200
parents 156a95e4c018
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
1 /*
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
2 myrrdin, a 2d tile engine
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
3 Copyright (c) 2008 Friedrich Weber
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
4
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
5 Permission is hereby granted, free of charge, to any person obtaining a copy
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
6 of this software and associated documentation files (the Software), to deal
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
7 in the Software without restriction, including without limitation the rights
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
8 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
9 copies of the Software, and to permit persons to whom the Software is
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
10 furnished to do so, subject to the following conditions:
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
11
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
12 The above copyright notice and this permission notice shall be included in
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
13 all copies or substantial portions of the Software.
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
14
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
18 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
19 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
20 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
21 THE SOFTWARE.
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
22 */
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
23
8
156a95e4c018 final package structure now, i hope
fred@reichbier.de
parents: 7
diff changeset
24 module myrrdin.consumers.tile;
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
25
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
26 import dsfml.window.all;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
27 import dsfml.system.all;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
28 import dsfml.graphics.all;
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
29 import tango.io.Stdout;
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
30
8
156a95e4c018 final package structure now, i hope
fred@reichbier.de
parents: 7
diff changeset
31 import myrrdin.consumers.consumer;
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
32 import myrrdin.renderer;
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
33 import myrrdin.tileset;
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
34 import myrrdin.tilemap;
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
35
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
36 class TileConsumer : Consumer {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
37 public Tilemap map;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
38
10
79b534bbda65 new director model
fred@reichbier.de
parents: 8
diff changeset
39 this(Tilemap map) {
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
40 this.map = map;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
41 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
42
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
43 void draw() {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
44 foreach(Sprite sprite; this.map.get_sprites()) {
4
292df259cc85 view + sprite consumers, animated sprite working
fred@reichbier.de
parents: 0
diff changeset
45 this.renderer.draw(sprite);
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
46 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
47 }
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
48
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
49 bool handle_event(Event evt) {
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
50 if (evt.Type == Event.EventType.MOUSEBUTTONPRESSED) {
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
51 Input input = this.renderer.app.getInput();
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
52 Vector2i tile = this.map.real_to_tile(0, input.getMouseX(), input.getMouseY());
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
53 if(this.map.has_tile(0, tile.x, tile.y)) {
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
54 Stdout.formatln("You clicked on the tile {}, {}", tile.x, tile.y);
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
55 }
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
56 return true;
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
57 }
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
58 return false;
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
59 }
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
60 }