aboutsummaryrefslogtreecommitdiff
path: root/src/specout.c
blob: 3f6719e2d65b07e432c942b5e3ab995292f0a385 (plain)
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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
/*

    casm - Simple, portable assembler

    Copyright (C) 2003-2015  Ian Cowburn (ianc@noddybox.co.uk)

    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 3 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/>.

    -------------------------------------------------------------------------

    Spectrum TAP file output handler.

*/
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>

#include "global.h"
#include "specout.h"
#include "expr.h"


/* ---------------------------------------- PRIVATE TYPES
*/
enum option_t
{
    OPT_LOADER,
    OPT_START_ADDR,
};

static const ValueTable option_set[] =
{
    {"spectrum-loader", OPT_LOADER},
    {"spectrum-start",  OPT_START_ADDR},
    {NULL}
};

typedef struct
{
    int         loader;
    int         start_addr;
} Options;


/* ---------------------------------------- PRIVATE DATA
*/

/* Types for AddLine()
*/
#define TYPE_END        0
#define TYPE_TOKEN      1
#define TYPE_STRING     2

/* Constants for some tokens
*/
#define TOK_VAL         176
#define TOK_QUOTE       34
#define TOK_CODE        175
#define TOK_USR         192
#define TOK_LOAD        239
#define TOK_RAND        249
#define TOK_CLEAR       253


static Options options =
{
    FALSE,
    -1
};

/* Buffers used for BASIC loader
*/
static unsigned char    basic[0x10000];
static unsigned         endptr = 0;
static unsigned         line_no = 10;


/* ---------------------------------------- PRIVATE FUNCTIONS
*/
static void Poke(unsigned char b, int *len)
{
    if (len)
    {
        (*len)++;
    }

    basic[endptr++]=b;
}


static void AddBASICLine(int type, ...)
{
    va_list va;
    int len;
    unsigned char *len_ptr;

    Poke(line_no>>8, NULL);
    Poke(line_no&0xff, NULL);
    line_no += 10;

    len_ptr = basic + endptr;
    endptr += 2;
    len = 0;

    va_start(va,type);

    while(type!=TYPE_END)
    {
        char *str;

        switch(type)
        {
            case TYPE_TOKEN:
                Poke(va_arg(va,int), &len);
                break;

            case TYPE_STRING:
                str = va_arg(va,char *);

                Poke(TOK_QUOTE, &len);

                while(*str)
                {
                    Poke(*str++, &len);
                }

                Poke(TOK_QUOTE, &len);

                break;

            default:
                break;
        }

        type = va_arg(va,int);
    }

    Poke(0x0d, &len);

    *len_ptr++ = len&0xff;
    *len_ptr = len>>8;
}


static Byte TapByte(FILE *fp, Byte b, Byte chk)
{
    chk ^= b;
    putc(b, fp);
    return chk;
}


static Byte TapWord(FILE *fp, int w, Byte chk)
{
    chk = TapByte(fp, w & 0xff, chk);
    chk = TapByte(fp, (w & 0xff00) >> 8, chk);
    return chk;
}


static Byte TapString(FILE *fp, const char *p, int len, Byte chk)
{
    while(len--)
    {
        chk = TapByte(fp, *p ? *p++ : ' ', chk);
    }

    return chk;
}


static unsigned char TapStream(FILE *fp, const unsigned char *p,
                               unsigned addr, unsigned len, unsigned char chk)
{
    while(len--)
    {
        chk = TapByte(fp, p[addr], chk);
        addr = (addr + 1) & 0xffff;
    }

    return chk;
}

/* ---------------------------------------- INTERFACES
*/
const ValueTable *SpecTAPOutputOptions(void)
{
    return option_set;
}

CommandStatus SpecTAPOutputSetOption(int opt, int argc, char *argv[],
                                     int quoted[],
                                     char *err, size_t errsize)
{
    CommandStatus stat = CMD_OK;

    CMD_ARGC_CHECK(1);

    switch(opt)
    {
        case OPT_LOADER:
            options.loader = ParseTrueFalse(argv[0], FALSE);
            break;

        case OPT_START_ADDR:
            CMD_EXPR(argv[0], options.start_addr);
            break;

        default:
            break;
    }

    return stat;
}

int SpecTAPOutput(const char *filename, const char *filename_bank,
                  MemoryBank **bank, int count, char *error, size_t error_size)
{
    FILE *fp = fopen(filename, "wb");
    int f;

    if (!fp)
    {
        snprintf(error, error_size, "Failed to create %s", filename);
        return FALSE;
    }

    /* First get the initial address is none defined
    */
    if (options.loader && options.start_addr == -1)
    {
        options.start_addr = bank[0]->min_address_used;
    }

    /* Output the BASIC loader if set
    */
    if (options.loader)
    {
        char no[64];
        Byte chk = 0;

        snprintf(no, sizeof no, "%u", options.start_addr);

        /* CLEAR VAL "start_addr"
        */
        AddBASICLine(TYPE_TOKEN, TOK_CLEAR,
                     TYPE_TOKEN, TOK_VAL,
                     TYPE_STRING, no,
                     TYPE_END);

        /* LOAD "" CODE
        */
        for(f = 0; f < count; f++)
        {
            AddBASICLine(TYPE_TOKEN, TOK_LOAD,
                         TYPE_TOKEN, TOK_QUOTE,
                         TYPE_TOKEN, TOK_QUOTE,
                         TYPE_TOKEN, TOK_CODE,
                         TYPE_END);
        }

        /* RANDOMIZE USR VAL "start_addr"
        */
        AddBASICLine(TYPE_TOKEN, TOK_RAND,
                     TYPE_TOKEN, TOK_USR,
                     TYPE_TOKEN, TOK_VAL,
                     TYPE_STRING, no,
                     TYPE_END);

        TapWord(fp, 19, 0);
        chk = TapByte(fp, 0, chk);
        chk = TapByte(fp, 0, chk);
        chk = TapString(fp, "LOADER.BAS", 10, chk);
        chk = TapWord(fp, endptr, chk);
        chk = TapWord(fp, 10, chk);
        chk = TapWord(fp, endptr, chk);

        TapByte(fp, chk, 0);

        TapWord(fp, endptr + 2, 0);

        chk = 0;

        chk = TapByte(fp, 0xff, chk);
        chk = TapStream(fp, basic, 0, endptr, chk);
        TapByte(fp, chk, 0);
    }

    /* Output the binary files
    */
    for(f = 0; f < count; f++)
    {
        Byte chk = 0;
        const Byte *mem;
        int min, max, len;

        mem = bank[f]->memory;
        min = bank[f]->min_address_used;
        max = bank[f]->max_address_used;
        len = max - min + 1;

        TapWord(fp, 19, 0);

        chk = TapByte(fp, 0, chk);
        chk = TapByte(fp, 3, chk);

        if (count == 1)
        {
            chk = TapString(fp, filename, 10, chk);
        }
        else
        {
            char fn[16];

            snprintf(fn, sizeof fn, filename_bank, bank[f]->number);
            chk = TapString(fp, fn, 10, chk);
        }

        chk = TapWord(fp, len, chk);
        chk = TapWord(fp, min, chk);
        chk = TapWord(fp, 32768, chk);

        TapByte(fp, chk, 0);

        /* Output file data
        */
        TapWord(fp, len + 2, 0);

        chk = 0;

        chk = TapByte(fp, 0xff, chk);

        while(min <= max)
        {
            chk = TapByte(fp, mem[min], chk);
            min++;
        }

        TapByte(fp, chk, 0);
    }

    fclose(fp);

    return TRUE;
}


/*
vim: ai sw=4 ts=8 expandtab
*/