-
Notifications
You must be signed in to change notification settings - Fork 2
/
int2intv.cpp
323 lines (260 loc) · 7.55 KB
/
int2intv.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
/**
* Intellivision rom file converter for the NT Mini Noir intellivision rom format
* Copyright (c) 2020 Robert Mendon (https://github.com/dot-bob)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <fstream>
#include <iostream>
#include <string.h>
#include <unistd.h>
using namespace std;
#define MAXBUFFER 256
// header details
unsigned int MapAddress[4] = {0,0,0,0};
unsigned int DataSize[4] = {0,0,0,0};
void PrintHelp(void)
{
cout << "\nNT Mini Noir intellivision rom formater v1.2\nCommand Use: int2intv -m X <input file> <output file>\n"
<< "\nSwitches:\n-m X, where X = rom memory map to encode\n";
exit(1);
}
void PopulateHeader(int Format)
{
switch(Format)
{
case 0:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2000;
MapAddress[1] = 0xD000;
DataSize[1] = 0x1000;
MapAddress[2] = 0xF000;
DataSize[2] = 0x1000;
break;
case 1:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2000;
MapAddress[1] = 0xD000;
DataSize[1] = 0x2FFF;
break;
case 2:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2000;
MapAddress[1] = 0x9000;
DataSize[1] = 0x2FFF;
MapAddress[2] = 0xD000;
DataSize[2] = 0x1000;
break;
case 3:
case 9:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2000;
MapAddress[1] = 0x9000;
DataSize[1] = 0x2000;
MapAddress[2] = 0xD000;
DataSize[2] = 0x1000;
MapAddress[3] = 0xF000;
DataSize[3] = 0x1000;
break;
case 4:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2000;
break;
case 5:
MapAddress[0] = 0x5000;
DataSize[0] = 0x2FFF;
MapAddress[1] = 0x9000;
DataSize[1] = 0x2FFF;
break;
case 6:
MapAddress[0] = 0x6000;
DataSize[0] = 0x2000;
break;
case 7:
MapAddress[0] = 0x4800;
DataSize[0] = 0x2000;
break;
case 8:
MapAddress[0] = 0x5000;
DataSize[0] = 0x1000;
MapAddress[1] = 0x7000;
DataSize[1] = 0x1000;
break;
case 99:
MapAddress[0] = 0x1000;
DataSize[0] = 0x1000;
break;
default:
cout << "Error: invalid rom map." << endl;
PrintHelp();
break;
}
}
int ProcessArg(const char *value, char *buffer, int argc, char* argv[])
{
int i;
for(i = 1;i< argc;i++)
{
if(strcmp(value,argv[i]) == 0)
{
i++;
if(i < argc)
{
if(strlen(argv[i]) < MAXBUFFER) // Prevent buffer overflow.
{
strcpy(buffer, argv[i]);
return(1);
}
else
{
cout << "Error: Argument too long. Buffer overflow.";
exit(3);
return(-1);
}
}
else
return(-1);
}
}
return(0);
}
bool CheckforFile(const char *path)
{
if(access(path, 0) == 0)
{
return(true);
}
else return(false);
}
const int wordsize = 2;
const char tempFileName[] = "tempfile.tmp";
int main(int argc, char* argv[])
{
ifstream inputFile;
ofstream outputFile;
char inputBuffer[wordsize];
char outputBuffer[wordsize];
char stringBuffer[MAXBUFFER];
char intputFileName[MAXBUFFER];
char outputFileName[MAXBUFFER];
unsigned int readSize = 0;
unsigned int headerSize;
if(argc < 4)
{
PrintHelp();
}
if(ProcessArg("-m",stringBuffer,argc,argv) != 1)
PrintHelp();
PopulateHeader(atoi(stringBuffer));
strcpy(intputFileName, argv[3]);
strcpy(outputFileName, argv[4]);
if(!CheckforFile(intputFileName))
{
cout << "Error opening input file: "<< intputFileName << endl;
exit(1);
}
inputFile.open(intputFileName, ios::binary);
outputFile.open(tempFileName, ios::binary);
// swap data order
while(inputFile.read(inputBuffer, wordsize))
{
readSize++;
for(int i=0;i<wordsize;i++)
outputBuffer[i] = inputBuffer[(wordsize-1)-i];
outputFile.write(outputBuffer, wordsize);
}
inputFile.close();
outputFile.close();
inputFile.open(tempFileName, ios::binary);
outputFile.open(outputFileName, ios::binary);
// first block
if(readSize > DataSize[0])
headerSize = DataSize[0];
else
headerSize = readSize;
readSize -= headerSize;
//write header
outputFile.write((const char *) &MapAddress[0], sizeof(unsigned int)); // write address
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write address
//write data
while(inputFile.read(inputBuffer, wordsize))
{
outputFile.write(inputBuffer, wordsize);
if(--headerSize == 0)
break;
}
if(readSize == 0)
goto endblock;
// second block
if(readSize > DataSize[1])
headerSize = DataSize[1];
else
headerSize = readSize;
readSize -= headerSize;
//write header
outputFile.write((const char *) &MapAddress[1], sizeof(unsigned int)); // write address
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write size
//write data
while(inputFile.read(inputBuffer, wordsize))
{
outputFile.write(inputBuffer, wordsize);
if(--headerSize == 0)
break;
}
if(readSize == 0)
goto endblock;
// third block
if(readSize > DataSize[2])
headerSize = DataSize[2];
else
headerSize = readSize;
readSize -= headerSize;
//write header
outputFile.write((const char *) &MapAddress[2], sizeof(unsigned int)); // write address
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write size
//write data
while(inputFile.read(inputBuffer, wordsize))
{
outputFile.write(inputBuffer, wordsize);
if(--headerSize == 0)
break;
}
if(readSize == 0)
goto endblock;
// fourth block
headerSize = readSize;
//write header
outputFile.write((const char *) &MapAddress[3], sizeof(unsigned int)); // write address
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write size
//write data
while(inputFile.read(inputBuffer, wordsize))
{
outputFile.write(inputBuffer, wordsize);
if(--headerSize == 0)
break;
}
endblock:
// end block
headerSize = 0;
// write footer: write the address and size as zero
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write address
outputFile.write((const char *) &headerSize, sizeof(unsigned int)); // write size
inputFile.close();
outputFile.close();
unlink(tempFileName);
return 0;
}