annotate import/myrrdin/tools.d @ 7:806b3781f4e4

completed tests, fixed stuff. usable now!
author fred@reichbier.de
date Sat, 19 Jul 2008 15:21:09 +0200
parents 510541745cd1
children 79b534bbda65
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: 2
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: 2
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: 2
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: 2
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: 2
diff changeset
23
7
806b3781f4e4 completed tests, fixed stuff. usable now!
fred@reichbier.de
parents: 6
diff changeset
24 module myrrdin.tools;
2
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
25
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
26 import tango.io.File;
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
27
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
28 char[] read_file_contents(char[] filename) {
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
29 auto file = new File (filename);
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
30 auto content = cast(char[]) file.read();
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
31
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
32 return content;
fc2f936a961c basic loading, to be fixed
fred@reichbier.de
parents:
diff changeset
33 }