R-PAGE
Resistance's Portable-Adventure-Game-Engine
locale.c
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #include <stdlib.h>
6 
7 // #include <exec/types.h>
8 #include "rpage/aos/inc.prl"
9 
10 #include "rpage/frwk.h"
11 #include "ext/tinfl.h"
12 #include "rpage/aos/locale.h"
13 #include "ext/aos/shrinkler.h"
14 #include "ext/aos/nrv2.h"
15 #include "rpage/err.h"
16 
17 extern struct DosLibrary *DOSBase;
18 
19 char *locale_ext[3] = {"_fr.pak", "_en.pak", "_es.pak"};
20 
21 // #define DEBUG_MACROS TRUE
22 
24 UBYTE *load_pak_locale_to_array(char *text_array[], UWORD array_size, char *filename)
25 {
26  BPTR fileHandle;
27  char tag[4], packer_tag[4];
28  UWORD unpacked_block_size, packed_block_size;
29  UBYTE *packed_block = NULL, *unpacked_block = NULL, *str_ptr;
30  short i;
31 #ifdef DEBUG_MACROS
32  printf("load_pak_locale_to_array(%s,%d);\n", filename, array_size);
33 #endif
34  if ((fileHandle = Open(filename, MODE_OLDFILE)))
35  {
36  Read(fileHandle, &tag, 4);
37  if (strncmp(tag, "TXPK", 4) != 0)
38  {
39  printf("cannot found tag 'TXPK'!\n");
40  }
41  else
42  {
43 #ifdef DEBUG_MACROS
44  printf("found tag 'TXPK'!\n");
45 #endif
46  // Get the original size of the block (before it was packed)
47  Read(fileHandle, &unpacked_block_size, 2);
48  unpacked_block = (UBYTE *)calloc(unpacked_block_size, sizeof(UBYTE));
49 #ifdef DEBUG_MACROS
50  printf("unpacked_block_size = %d\n", unpacked_block_size);
51 #endif
52  // Get the compression method
53  Read(fileHandle, &packer_tag, 4);
54 
55  // Look for the packed size
56  Read(fileHandle, &tag, 4);
57  if (strncmp(tag, "SIZE", 4) == 0)
58  {
59  // Get the size of the block after it was packed
60  Read(fileHandle, &packed_block_size, 2);
61 #ifdef DEBUG_MACROS
62  printf("packed_block_size = %d\n", packed_block_size);
63 #endif
64  packed_block = (UBYTE *)calloc(packed_block_size, sizeof(UBYTE));
65  Read(fileHandle, packed_block, packed_block_size);
66 
67  if (strncmp(packer_tag, "MINZ", 4) == 0)
68  {
69 #ifdef DEBUG_MACROS
70  printf("Calling MINZ decoder!\n");
71 #endif
72  tinfl_decompress_mem_to_mem(unpacked_block, unpacked_block_size, packed_block, packed_block_size, 1);
73  }
74  else if (strncmp(packer_tag, "SHRK", 4) == 0)
75  {
76 #ifdef DEBUG_MACROS
77  printf("Calling SHRK decoder!\n");
78 #endif
79  ShrinklerDecompress(packed_block, unpacked_block, NULL, NULL);
80  }
81  else if (strncmp(packer_tag, "NRV2", 4) == 0)
82  {
83 #ifdef DEBUG_MACROS
84  printf("Calling NRV2X decoder!\n");
85 #endif
86  nrv2s_unpack(packed_block, unpacked_block);
87  }
88 
89  // Transfer the content to an array
90  str_ptr = unpacked_block;
91  for(i = 0; i < array_size; i++)
92  {
93  UWORD str_len;
94  str_len = (*str_ptr) << 8 | (*(str_ptr + 1));
95 #ifdef DEBUG_MACROS
96  printf("string len = 0x%X/%d, ", str_len, str_len);
97 #endif
98  str_ptr += 2;
99  text_array[i] = str_ptr; // (char *)calloc(str_len, sizeof(char));
100  // strncpy(text_array[i], str_ptr, str_len);
101 #ifdef DEBUG_MACROS
102  printf("%s\n", text_array[i]);
103 #endif
104  str_ptr += str_len;
105  }
106 
107  // Free the allocated memory
108  if (packed_block != NULL)
109  {
110  free(packed_block);
111  packed_block = NULL;
112  }
113  // free(unpacked_block);
114  }
115  else
116  {
117  printf(err_no_size_found);
118  printf(", %s\n", tag);
119  }
120 
121  }
122  }
123 
124  return unpacked_block;
125 }
const char * err_no_size_found
Definition: err.c:2
UBYTE * load_pak_locale_to_array(char *text_array[], UWORD array_size, char *filename)
Compressed Text loading.
Definition: locale.c:24
unsigned char UBYTE
Definition: utils.h:20
char * locale_ext[3]
Definition: locale.c:19
unsigned short UWORD
Definition: utils.h:28
struct DosLibrary * DOSBase
size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t src_buf_len, int flags)
Definition: tinfl.c:544