0af4308c11575f0a68308eece97916daf2af1c5b
[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 -
33                            non-sloped brick wall. */
34   GD_FORMAT_BD2,        /* boulder dash 2 with rockford's extensions */
35   GD_FORMAT_BD2_ATARI,  /* boulder dash 2, atari version */
36   GD_FORMAT_PLC,        /* peter liepa construction kit */
37   GD_FORMAT_PLC_ATARI,  /* peter liepa construction kit, atari version */
38   GD_FORMAT_DLB,        /* no one's delight boulder dash */
39   GD_FORMAT_CRLI,       /* crazy light construction kit */
40   GD_FORMAT_CRDR_7,     /* crazy dream 7 */
41   GD_FORMAT_CRDR_9,     /* crazy dream 9 - is a crli caveset with hardcoded mazes */
42   GD_FORMAT_FIRSTB,     /* first boulder */
43 } GdCavefileFormat;
44
45 /* engines */
46 typedef enum _gd_engine
47 {
48   GD_ENGINE_BD1,
49   GD_ENGINE_BD2,
50   GD_ENGINE_PLCK,
51   GD_ENGINE_1STB,
52   GD_ENGINE_CRDR7,
53   GD_ENGINE_CRLI,
54   GD_ENGINE_INVALID,    /* fake */
55 } GdEngine;
56
57 extern const char *gd_engines[];
58
59 GdCavefileFormat gd_caveset_imported_get_format(const unsigned char *buf);
60 List* gd_caveset_import_from_buffer (const unsigned char *buf, size_t length);
61
62 void gd_cave_set_engine_defaults(GdCave *cave, GdEngine engine);
63 GdEngine gd_cave_get_engine_from_string(const char *param);
64 GdPropertyDefault *gd_get_engine_default_array(GdEngine engine);
65
66 void gd_c64_import_init_tables(void);
67
68 #endif  // BD_CAVEIMPORT_H