]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_vrs.h
16.exe serial print debug
[16.git] / src / lib / 16_vrs.h
1 /* Project 16 Source Code~
2  * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
3  *
4  * This file is part of Project 16.
5  *
6  * Project 16 is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Project 16 is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>, or
18  * write to the Free Software Foundation, Inc., 51 Franklin Street,
19  * Fifth Floor, Boston, MA 02110-1301 USA.
20  *
21  */
22 #ifndef __16_VRS__
23 #define __16_VRS__
24
25 #include "src/lib/16_head.h"
26 #include "src/lib/modex16.h"
27 #include "src/lib/16_ca.h"
28 #include "src/lib/16_mm.h"
29 //#include <hw/cpu/cpu.h>
30 //#include <hw/dos/dos.h>
31 //#include <hw/vga/vga.h>
32
33 // Container for .vrs files loaded in memory with useful info
34 // Includes:
35 // + size of the .vrs blob in memory
36 // + pointer to the blob/vrs header
37
38 struct vrs_container{
39         dword size;
40         union{
41                 byte huge *buffer;
42                 struct vrs_header huge *vrs_hdr;
43         };
44 };
45
46 struct vrl_container{
47         dword size;
48         union{
49                 byte huge *buffer;
50                 struct vrl1_vgax_header huge *vrl_header;
51         };
52 };
53
54 // Read .vrs file into memory
55 // In:
56 // + char *filename - name of the file to load
57 // + struct vrs_container *vrs_cont - pointer to the vrs_container
58 // to load the file into
59 // Out:
60 // + int - 0 on succes, 1 on failure
61 int read_vrs(global_game_variables_t *gvar, char *filename, struct vrs_container *vrs_cont);
62
63 // Seek and return a specified .vrl blob from .vrs blob in memory
64 // In:
65 // + struct vrs_container *vrs_cont - pointer to the vrs_container
66 // with a loaded .vrs file
67 // + uint16_t id - id of the vrl to retrive
68 // Out:
69 // struct vrl_container* - a pointer to a vrl_container with a pointer
70 // to the requested .vrl blob
71 struct vrl_container* get_vrl_by_id(struct vrs_container *vrs_cont, uint16_t id);
72
73 #endif