aboutsummaryrefslogtreecommitdiff
path: root/src/output.c
blob: b02e36fc6e0a297dee783afaba6d10fdac23ec62 (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
/*

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

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

    Various output type handlers.

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

#include "global.h"
#include "output.h"

/* ---------------------------------------- GLOBALS
*/

enum option_t
{
    OPT_OUTPUTFILE,
    OPT_OUTPUTBANK,
    OPT_OUTPUTFORMAT
};

static const ValueTable option_set[] =
{
    {"output-file",     OPT_OUTPUTFILE},
    {"output-bank",     OPT_OUTPUTBANK},
    {"output-format",   OPT_OUTPUTFORMAT},
    {NULL}
};

typedef enum
{
    RAW,
    TAP,
    T64,
    ZX81,
    GAMEBOY,
    SNES,
    LIBRARY,
    NES,
    CPC,
    PRG,
    HEX
} Format;

static char             output[4096] = "output";
static char             output_bank[4096] = "output.%u";
static char             error[1024];
static Format           format = RAW;

static ValueTable       format_table[] =
{
    {"raw",             RAW},
    {"spectrum",        TAP},
    {"t64",             T64},
    {"zx81",            ZX81},
    {"gameboy",         GAMEBOY},
    {"snes",            SNES},
    {"lib",             LIBRARY},
    {"nes",             NES},
    {"cpc",             CPC},
    {"prg",             PRG},
    {"hex",             HEX},
    {NULL}
};


/* ---------------------------------------- INTERFACES
*/

const ValueTable *OutputOptions(void)
{
    return option_set;
}


CommandStatus OutputSetOption(int opt, int argc, char *argv[],
                              int quoted[], char *err, size_t errsize)
{
    const ValueTable *val;

    CMD_ARGC_CHECK(1);

    switch(opt)
    {
        case OPT_OUTPUTFILE:
            CopyStr(output, argv[0], sizeof output);
            break;

        case OPT_OUTPUTBANK:
            CopyStr(output_bank, argv[0], sizeof output_bank);
            break;

        case OPT_OUTPUTFORMAT:
            CMD_TABLE(argv[0], format_table, val);
            format = val->value;
            break;

        default:
            break;
    }

    return CMD_OK;
}


int OutputCode(void)
{
    MemoryBank **bank;
    int count;
    int min;
    int max;
    const Byte *mem;

    bank = MemoryBanks(&count);

    if (!bank)
    {
        fprintf(stderr, "Skipping output; no written memory to write\n");
        return TRUE;
    }

    switch(format)
    {
        case RAW:
            return RawOutput(output, output_bank, bank, count,
                             error, sizeof error);

        case TAP:
            return SpecTAPOutput(output, output_bank, bank, count,
                                 error, sizeof error);

        case T64:
            return T64Output(output, output_bank, bank, count,
                             error, sizeof error);

        case ZX81:
            return ZX81Output(output, output_bank, bank, count,
                              error, sizeof error);

        case GAMEBOY:
            return GBOutput(output, output_bank, bank, count,
                            error, sizeof error);

        case SNES:
            return SNESOutput(output, output_bank, bank, count,
                              error, sizeof error);

        case LIBRARY:
            return LibOutput(output, output_bank, bank, count,
                             error, sizeof error);

        case NES:
            return NESOutput(output, output_bank, bank, count,
                             error, sizeof error);

        case CPC:
            return CPCOutput(output, output_bank, bank, count,
                             error, sizeof error);

        case PRG:
            return PRGOutput(output, output_bank, bank, count,
                             error, sizeof error);

        case HEX:
            return HEXOutput(output, output_bank, bank, count,
                             error, sizeof error);

        default:
            break;
    }

    return FALSE;
}


const char *OutputError(void)
{
    return error;
}


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