cleanup of unnecessarily convoluted function call
[rocksndiamonds.git] / src / game_bd / bd_c64import.h
1 /*
2  * Copyright (c) 2007, 2008, 2009, Czirkos Zoltan <cirix@fw.hu>
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef BD_CAVEIMPORT_H
18 #define BD_CAVEIMPORT_H
19
20 #include "bd_cave.h"
21
22
23 extern const char gd_bd_internal_chars[];
24 extern const GdElement gd_crazylight_import_table[];
25
26 // file formats
27 typedef enum _gd_cavefile_format
28 {
29   GD_FORMAT_UNKNOWN,    // unknown format
30   GD_FORMAT_BD1,        // boulder dash 1
31   GD_FORMAT_BD1_ATARI,  // boulder dash 1 atari version
32   GD_FORMAT_DC1,        // boulder dash 1, deluxe caves 1 extension - non-sloped brick wall
33   GD_FORMAT_BD2,        // boulder dash 2 with rockford's extensions
34   GD_FORMAT_BD2_ATARI,  // boulder dash 2, atari version
35   GD_FORMAT_PLC,        // peter liepa construction kit
36   GD_FORMAT_PLC_ATARI,  // peter liepa construction kit, atari version
37   GD_FORMAT_DLB,        // no one's delight boulder dash
38   GD_FORMAT_CRLI,       // crazy light construction kit
39   GD_FORMAT_CRDR_7,     // crazy dream 7
40   GD_FORMAT_CRDR_9,     // crazy dream 9 - is a crli caveset with hardcoded mazes
41   GD_FORMAT_FIRSTB,     // first boulder
42 } GdCavefileFormat;
43
44 // engines
45 typedef enum _gd_engine
46 {
47   GD_ENGINE_BD1,
48   GD_ENGINE_BD2,
49   GD_ENGINE_PLCK,
50   GD_ENGINE_1STB,
51   GD_ENGINE_CRDR7,
52   GD_ENGINE_CRLI,
53   GD_ENGINE_INVALID,    // fake
54 } GdEngine;
55
56 extern const char *gd_engines[];
57
58 GdCavefileFormat gd_caveset_imported_get_format(const unsigned char *buf);
59 List* gd_caveset_import_from_buffer (const unsigned char *buf, size_t length);
60
61 void gd_cave_set_engine_defaults(GdCave *cave, GdEngine engine);
62 GdEngine gd_cave_get_engine_from_string(const char *param);
63 GdPropertyDefault *gd_get_engine_default_array(GdEngine engine);
64
65 void gd_c64_import_init_tables(void);
66
67 #endif  // BD_CAVEIMPORT_H