]> 4ch.mooo.com Git - 16.git/blob - src/lib/16_vrs.c
polished 16_vrs.h and put into make file AND! updated copyright to add yakui lover...
[16.git] / src / lib / 16_vrs.c
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 #include "src/lib/16_vrs.h"
23
24 //TODO: USE 16_MM! AND 16_CA!
25 // Read .vrs file into memory
26 int read_vrs(char *filename, struct vrs_container *vrs_cont){
27         // Initialise a local copy of becessary variables
28         // so vrs_cont won't be dirty on error
29         int fd;
30         dword size;
31         byte *buffer;
32         // Open filename, get size of file,
33         // populate the vrs_container if all tests pass
34         fd = open(filename, O_RDONLY|O_BINARY);
35         // Insert sanity cheks later
36         size = lseek(fd, 0, SEEK_END);
37         buffer = malloc(size);
38         lseek(fd, 0, SEEK_SET);
39         read(fd, buffer, size);
40         vrs_cont->size = size;
41         vrs_cont->buffer = buffer;
42         // 0 is an invalid value for ids under vrs specifications,
43         // so it is safe to flush ids to this value
44         vrs_cont->anchor_sprite_id = 0;
45         vrs_cont->current_sprite_id = 0;
46         return 0;
47 }
48
49 //TODO: USE 16_MM! AND 16_CA!
50 // Seek and return a specified .vrl blob from .vrs blob in memory
51 struct vrl_container* get_vrl_by_id(struct vrs_container *vrs_cont, uint16_t id){
52         uint16_t *ids;
53         uint32_t *vrl_list;
54         struct vrl_container *vrl_cont;
55         int counter = 0;
56         // If id is invalid, return null
57         if(id == 0){
58                 // Probably add an error message?
59                 return 0;
60         }
61         // Get id list from .vrs blob (base + offset)
62         ids = (uint16_t*)vrs_cont->buffer + (dword)vrs_cont->vrs_hdr->offset_table[VRS_HEADER_OFFSET_SPRITE_ID_LIST];
63         // Loop through the id list until we found the right one or hit the end of the list
64         // Counter is keeping track of the offset(in ids/vrl blobs)
65         while(ids[counter] != id && ids[counter]){
66                 counter++;
67         }
68         // Return null if we couldn't find the requested id
69         if(!ids[counter]){
70                 // Error message?
71                 return 0;
72         }
73         // Get vrl list from .vrs blob (base + offset)
74         vrl_list = (uint32_t *)(vrs_cont->buffer + vrs_cont->vrs_hdr->offset_table[VRS_HEADER_OFFSET_VRS_LIST]);
75         // Allocate memory for vrl_cont
76         vrl_cont = (struct vrl_container*)malloc(sizeof(struct vrl_container));
77         // Get vrl_header from .vrs (base + offset from vrl_list)
78         // Counter is number of vrls to skip (ids and vrls are aligned according to the .vrs specification)
79         vrl_cont->vrl_header = (struct vrl1_vgax_header*)(vrs_cont->buffer + vrl_list[counter]);
80         // Get .vrl size by integer arithmetics (next vrl - current vrl)
81         // Untested. May be an incorrect way to do so
82         vrl_cont->size = vrl_list[counter+1] - vrl_list[counter];
83         return vrl_cont;
84 }