annotate import/myrrdin/imagecache.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: 0
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: 0
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: 0
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: 0
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: 0
diff changeset
23
0
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
24 module imagecache;
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;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
29
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
30 import tango.io.vfs.FileFolder;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
31
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
32 class Cache {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
33 private FileFolder filefolder;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
34 private Image[char[]] images;
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
35
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
36 this(char[] folder) {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
37 this.filefolder = new FileFolder(folder, false);
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
38 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
39
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
40 void load(char[] real_filename, char[] seen_filename) {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
41 this.images[seen_filename] = new Image();
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
42 this.images[seen_filename].loadFromFile(real_filename);
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
43 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
44
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
45 Image get_image(char[] filename) {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
46 if (!(filename in this.images)) {
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
47 this.load(this.filefolder.file(filename).toString(), filename);
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
48 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
49 return this.images[filename];
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
50 }
a2d653eb9e99 first working version.
fred@reichbier.de
parents:
diff changeset
51 }