annotate import/myrrdin/tileconsumer.d @ 6:510541745cd1

turned myrrdin into package.
author fred@reichbier.de
date Sat, 19 Jul 2008 15:10:56 +0200
parents f4b89014ad39
children 806b3781f4e4
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
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
24 module tileconsumer;
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
6
510541745cd1 turned myrrdin into package.
fred@reichbier.de
parents: 5
diff changeset
31 import myrrdin.consumer;
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
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
39 this(Renderer renderer, Tilemap map) {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
40 super(renderer);
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
41 this.map = map;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
42 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
43
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
44 void draw() {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
45 foreach(Sprite sprite; this.map.get_sprites()) {
4
292df259cc85 view + sprite consumers, animated sprite working
fred@reichbier.de
parents: 0
diff changeset
46 this.renderer.draw(sprite);
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
47 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
48 }
5
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
49
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
50 bool handle_event(Event evt) {
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
51 if (evt.Type == Event.EventType.MOUSEBUTTONPRESSED) {
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
52 Input input = this.renderer.app.getInput();
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
53 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
54 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
55 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
56 }
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
57 return true;
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
58 }
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
59 return false;
f4b89014ad39 added moving figure stuff + animated sprites. not usable atm.
fred@reichbier.de
parents: 4
diff changeset
60 }
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
61 }