summaryrefslogtreecommitdiff
path: root/source/tapes.c
blob: adac3b6cde6b6d7914aa3a6b5c78e1caa62df23f (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
/*
   ds81 - Nintendo DS ZX81 emulator.

   Copyright (C) 2006  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$
*/

#include <nds.h>

#include "tapes.h"
#include "framebuffer.h"
#include "zx81.h"

#include "maze_bin.h"
#include "maze_inlay_bin.h"
#include "cpatrol_bin.h"
#include "cpatrol_inlay_bin.h"
#include "sabotage_bin.h"
#include "sabotage_inlay_bin.h"


/* ---------------------------------------- STATIC DATA
*/
typedef struct
{
    const u8	*tape;
    const u32	*tape_len;
    sImage	img;
    void	*source_pcx;
    const char	*text;
} Tape;

#define NO_TAPES	3

static Tape	tapes[NO_TAPES]=
		{
		    {
		    	maze_bin,
			&maze_bin_size,
			{0},
			maze_inlay_bin,
			"%3d monster maze%\n"
			"(c) 1983 Malcom E. Evans\n\n"
			"Escape the maze and its T-Rex\n"
			"\n\n"
			"%note% when the screen goes grey\n"
			"for 30-60 seconds this is not a\n"
			"problem, and is the game creating\n"
			"the lair of rex."
		    },
		    {
		    	cpatrol_bin,
			&cpatrol_bin_size,
			{0},
			cpatrol_inlay_bin,
			"%city patrol%\n"
			"(c) 1982 Don Priestley\n\n"
			"Defend the city from the aliens.\n\n"
			"yes - that parallax city was\n"
			"done with a text mode and the\n"
			"equivalent of a 0.8mhz z80"
		    },
		    {
		    	sabotage_bin,
			&sabotage_bin_size,
			{0},
			sabotage_inlay_bin,
			"%sabotage%\n"
			"(c) 1982 Don Priestley\n\n"
			"Destroy the boxes before the\n"
			"guard finds you.\n\n"
			"or find the saboteur as the\n"
			"guard.\n\n"
			"while this game may not feature\n"
			"the dazzling graphics of other\n"
			"ZX81 games it more than makes\n"
			"up with a simply joyous\n"
			"gameplay mechanic.\n"
		    }
		};


static int	current=0;

/* ---------------------------------------- PRIVATE INTERFACES
*/
static void InitTapes(void)
{
    static int init=FALSE;
    int f;

    if (init)
    {
    	return;
    }

    init=TRUE;

    for(f=0;f<NO_TAPES;f++)
    {
    	loadPCX(tapes[f].source_pcx,&tapes[f].img);
	image8to16(&tapes[f].img);
    }
}

static void DisplayTape(Tape *t)
{
    FB_Clear();
    FB_Blit(&t->img,255-t->img.width,0);

    FB_Print("LEFT/RIGHT",0,0,FB_RGB(255,255,255),-1);
    FB_Print("to choose",0,10,FB_RGB(255,255,255),-1);
    FB_Print("A to select",0,30,FB_RGB(255,255,255),-1);
    FB_Print("B to cancel",0,40,FB_RGB(255,255,255),-1);

    ZX81DisplayString(t->text);
}

/* ---------------------------------------- PUBLIC INTERFACES
*/
void SelectTape(void)
{
    int done=FALSE;

    InitTapes();

    while(!done)
    {
	uint32 key=0;

    	DisplayTape(tapes+current);

        do
        {
            swiWaitForVBlank();
        } while(!(key=keysDownRepeat()));

	if (key & KEY_LEFT)
	{
	    if (--current<0)
	    {
	    	current=NO_TAPES-1;
	    }
	}
	else if (key & KEY_RIGHT)
	{
	    current=(current+1)%NO_TAPES;
	}
	else if (key & KEY_A)
	{
	    done=TRUE;
	    ZX81SetTape(tapes[current].tape,*tapes[current].tape_len);
	}
	else if (key & KEY_B)
	{
	    done=TRUE;
	}
    }
}