summaryrefslogtreecommitdiff
path: root/source/snap.c
blob: 789d7d51d622fdd4b0dd9345e118ade5d19419a3 (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
/*

   3dsspec - Nintendo 3DS Sinclair Spectrum 48K emulator.

   Copyright (C) 2021  Ian Cowburn
   
   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, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  
   $Id: snap.c 4 2006-09-15 00:30:18Z ianc $

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

#include "snap.h"
#include "debug.h"

/* ---------------------------------------- MACROS
*/
#ifndef TRUE
#define TRUE 1
#endif

#ifndef FALSE
#define FALSE 0
#endif

#define ROMLEN 0x4000


/* ---------------------------------------- PRIVATE DATA
*/
static FILE     *tapfile;


/* ---------------------------------------- PRIVATE FUNCTIONS
*/
static Z80Byte GetTAPByte(void)
{
    int ret=0;

    if (tapfile)
    {
	ret = fgetc(tapfile);

        if (ret == EOF)
        {
            ret = 0;
            fclose(tapfile);
            tapfile = NULL;
        }
    }

    return (Z80Byte)ret;
}


static Z80Word GetTAPLSBWord(void)
{
    int c1,c2;

    c1=GetTAPByte();
    c2=GetTAPByte();

    return (Z80Word)(c1+(c2<<8));
}


/* ---------------------------------------- INTERFACES
*/
void TAPOpenTape(const char *path)
{
    tapfile = fopen(path, "rb");
}


void TAPCloseTape(void)
{
    if (tapfile)
    {
        fclose(tapfile);
        tapfile = NULL;
    }
}


int TAPLoad(Z80Byte id, Z80Word *addr, Z80Word *len, SNAP_Poke poke)
{
    Z80Word blen;
    Z80Byte type,b,csum,tape_csum;

    b = 0;

    blen = GetTAPLSBWord();
    type = GetTAPByte();
    csum = type;

    if (!tapfile)
    {
        SPEC_DEBUG("Tape not open, returning FALSE\n");
    	return FALSE;
    }

    SPEC_DEBUG("Read block.  len=%u type=%u\n", (unsigned)blen, (unsigned)type);
    SPEC_DEBUG("Requested block len=%u type=%u addr=%u\n",
                        (unsigned)*len, (unsigned)id, (unsigned)*addr);

    /* Have we found the requested block?
    */
    if (id == type)
    {
    	/* Knock of block type
	*/
	blen--;

	while(blen && *len)
	{
	    b = GetTAPByte();

            if (blen > 1)
            {
                csum ^= b;
                poke(*addr,b);
            }

	    (*addr)++;
	    (*len)--;
	    blen--;
	}

        SPEC_DEBUG("Finished block.  Remaining blen=%u len=%u\n",
                                (unsigned)blen, (unsigned)*len);

	/* Get the checksum.  If the length was correct there should be just
           byte left in blen, but decrement it in a loop to skip to the end.
	*/
	if (blen)
	{
            while(blen--)
            {
                tape_csum=GetTAPByte();

                if (blen)
                {
                    csum ^= tape_csum;
                }
            }
	}
	else
        {
	    tape_csum=b;
        }

	/* Check the checksum
	*/
        if (csum == tape_csum)
        {
            SPEC_DEBUG("Checksum %u (calc) and %u (tape) match\n",
                                (unsigned)csum, (unsigned)tape_csum);
            return TRUE;
        }
        else
        {
            SPEC_DEBUG("Checksum %u (calc) and %u (tape) DON'T match\n",
                                (unsigned)csum, (unsigned)tape_csum);
            return FALSE;
        }
    }
    else
    {
    	/* If it's the wrong type, skip it
	*/
	while(blen--)
        {
	    GetTAPByte();
        }

	return FALSE;
    }
}


/* END OF FILE */