forked from z88dk/z88dk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdstar.c
455 lines (401 loc) · 10.5 KB
/
dstar.c
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/*
* Ported to the Ti82/83/83+ (rest will follow) by Henk Poley
* Extended with different sprite sizes and sound by Stefano Bodrato
*
* * * * * * *
*
* dstar.c
*
* DStar Z88 - C Demo
* Original TI game By A Von Dollen
* Converted to Z88 By D Morris
* Keys: Q,A,O,P,SPACE,H,G
*
* * * * * * *
*
* dstarz88 is a conversion of a TI86 game I found with
* source on www.ticalc.org.
*
* The original program was written by Andrew Von Dollen who
* in turn based it on a HP game by Joe W.
*
* The aim of the game is to collect all the clear bubbles by
* running over them. You control either the dark bubble or
* the solid box. The dark bubble is used to collect the clear
* bubbles, and the solid box is used as a sort of movable wall.
*
* Both objects carry on moving until they hit something else
* (except for the dark bubble in the case of clear bubbles).
*
* * * * * * *
*
* The keys are defined in #define statements, and default thus:
*
* Up: Q
* Down: A
* Left: O
* Right: P
* Quit: G
* Retry: H
* Switch: [SPACE]
*
* Switch changes between the dark bubble and the solid box.
*
*
* On the TI Calculators the keyboard mapping is:
*
* up,down,left,right - move ball/box
* [Enter] - toggle ball/box
* 7 - Quit
* 9 - Restart level
* +,- - CHEAT....
*
* * * * * * *
*
* This is the first game ever produced with the Small C compiler -
* it was written as a statement saying that it is possible to
* write something easily, quickly and efficiently using the
* compiler. Hopefully it will be an encouragement for others to
* do likewise!
*
* * * * * * *
*
* Compile examples :
*
* To get a TI82 version of the game (optionally you could add sound):
* zcc +ti82 -create-app dstar.c
*
* To get a TI85 version of the game (optionally you could add sound):
* zcc +ti85 -Dspritesize=7 -create-app dstar.c
*
* To get a Spectrum 16K version of the game:
* zcc +zx -Dspritesize=16 -DSOUND -create-app -zorg=24300 dstar.c
*
* To get a TS2068 HRG version of the game:
* zcc +ts2068 -pragma-define:CLIB_DEFAULT_SCREEN_MODE=0x3e -Dspritesize=21 -DSOUND -create-app dstar.c
*
* To get a VZ200 version:
* zcc +vz -Dspritesize=7 -DSOUND -odztar.vz dstar.c
*
* TIKI1-100
* zcc +cpm -subtype=tiki100 -o dstar.com -Dspritesize=28 dstar.c
*
* MSXDOS:
* zcc +msx -Dspritesize=16 -DSOUND -startup=2 dstar.c
*
* MSX:
* zcc +msx -Dspritesize=16 -DSOUND -create-app dstar.c
*
* MULTI 8:
* zcc +multi8 -Dspritesize=21 -create-app dstar.c
*
* NEC PC-8801:
* zcc +pc88 -lgfxpc88 -create-app -DSOUND -Dspritesize=10 dstar.c
* zcc +pc88 -lgfxpc88hr200 -create-app -lm -Dspritemem=102 -DSOUND dstar.c
*
* Robotron KC:
* zcc +z9001 -Dspritesize=20 -DSOUND -lgfx9001krt -create-app dstar.c
* zcc +kc -Dspritesize=20 -create-app dstar.c
*
* Sharp PC-G850:
* zcc +g800 -clib=g850 -Dspritesize=5 -create-app -DSOUND dstar.c
*
* SPC-1000:
* zcc +spc1000 -Dspritesize=16 -create-app dstar.c
*
* Commodore 128:
* zcc +c128 -lgfx128hr -create-app -Dspritesize=21 dstar.c
*
* Bondwell 2:
* zcc +cpm -subtype=bw2 -create-app -Dspritesize=21 dstar.c
*
* ZX81, various HRG flavours (see also the specific target version):
* zcc +zx81 -O3 -clib=mt -create-app -Dspritesize=10 dstar.c
* zcc +zx81 -O3 -clib=g007 -create-app -Dspritesize=16 dstar.c
* zcc +zx81 -O3 -clib=arx -subtype=arx -create-app -Dspritesize=16 dstar.c
* zcc +zx81 -O3 -clib=wrx -subtype=wrx -create-app -Dspritesize=16 dstar.c
*
* To get an 80 pixel graphics version of the game (Mattel Aquarius, TRS80, etc):
* zcc +aquarius -Dspritesize=5 -create-app dstar.c
*
* Even smaller version of the game:
* zcc +gal -Dspritesize=4 -create-app dstar.c
*
* (in the above examples the sprite size can be set to 4,5,6,7,8 or 16
* and sound can optionally be added with some target)
*
* * * * * * *
*
* Enough twaddle, enjoy the game and study the source!
*
* d. <[email protected]> 1/12/98
*
* * * * * * *
*/
#include <stdio.h>
#include <games.h>
#include <stdlib.h>
#include <graphics.h>
#ifdef SOUND
#include <sound.h>
#endif
#ifdef SOUNDB
#include <sound.h>
#endif
/* #define spritesize 4 --> minimalistic, 64x36 pixels */
/* #define spritesize 5 --> very low resolutions, 80x45 pixels */
/* #define spritesize 6 --> TI mode, 96x54 */
/* #define spritesize 7 --> TI85/86, VZ200 */
/* #define spritesize 8 --> 128x72 pixels */
/* #define spritesize 10 --> 160x90 pixels */
/* #define spritesize 14 --> Medium screen mode 224x126 */
/* #define spritesize 16 --> Big screen mode 256x144 */
/* #define spritesize 20 --> Wide screen mode 320x160 */
/* #define spritesize 21 --> Wide screen mode 512x192 */
/* #define spritemem 102 --> 640x200 */
/* #define spritesize 28 --> Extra wide screen mode 1024x256 */
/* Single sprite memory usage, including bytes for its size */
#if (spritesize == 10)
#define spritemem 22
#endif
#if (spritesize == 14)
#define spritemem 30
#endif
#if (spritesize == 15)|(spritesize == 16)
#define spritemem 34
#endif
#if (spritesize == 20)
#define spritemem 62
#define xsize 20
#endif
#if (spritemem == 102) // 640x200
#define spritesize 20
#define xsize 40
#endif
#if (spritesize == 21)
#define spritemem 90
#define xsize 32
#endif
#if (spritesize == 28)
#define spritemem 226
#define xsize 64
#endif
#ifndef spritemem
#define spritemem (spritesize+2)
#endif
#ifndef spritesize
#define spritesize 6
#endif
#include "dstar.h"
#ifdef __TIKI100__
#include "tiki100.h"
#endif
void main()
{
Level = (STARTLEV-1);
SetupLevel(); /* Display the first level */
/* Loop keyhandler till you finished the game */
while (CheckNotFinished())
Gamekeys();
}
void Gamekeys(void)
{
char *charptr;
int k;
/* Set up a pointer to the variable we want to change
* (either the box or the ball) */
charptr = PieceIsBall ? &BoxOffset : &BallOffset;
switch(getk())
{
case K_DOWN:
case K_DOWN|0x20:
MovePiece(charptr,0,+1);
break;
case K_UP:
case K_UP|0x20:
MovePiece(charptr,0,-1);
break;
case K_RIGHT:
case K_RIGHT|0x20:
MovePiece(charptr,+1,0);
break;
case K_LEFT:
case K_LEFT|0x20:
MovePiece(charptr,-1,0);
break;
case K_SWITCH:
PieceIsBall^=1; /* Toggle ball/box */
#ifdef SOUND
bit_fx4 (5);
#endif
#ifdef SOUNDB
bit_fx6 (6);
#endif
while (getk() == K_SWITCH) {}
break;
case K_EXIT:
case K_EXIT|0x20:
#ifdef SOUNDB
bit_fx6 (4);
#endif
exit(0);
case K_NEXTLEV: /* Okay this IS cheating... */
if(++Level==MAXLEVEL)
{ --Level; break; }
SetupLevel();
break;
case K_PREVLEV:
if(--Level==-1)
{ ++Level; break; }
/* fall thrue */
case K_CLEAR:
case K_CLEAR|0x20:
#ifdef SOUND
bit_fx4 (3);
#endif
#ifdef SOUNDB
bit_fx6 (1);
#endif
SetupLevel();
}
}
/* The level is stored 'compressed', taking up 38 bytes a time.
* byte 0 - position of ball
* byte 1 - position of box
* 2-37 - Level data
*
* Level data is stored as two bits per block, so we have to shift our
* picked up byte round to get it.
*/
void SetupLevel(void)
{
int x;
char *ptr,*ptr2;
/* Fresh level, so start with the ball */
PieceIsBall = FALSE;
ptr2 = Board; /* We copy to the Board */
ptr = levels + (Level * 38); /* from the Level data */
/* First two bytes are the ball and the box position */
BallOffset = *ptr++;
BoxOffset = *ptr++;
/* Decompress Level into the Board */
for (x=0; x!=36; x++)
{
*ptr2++=((*ptr)>>6)&3;
*ptr2++=((*ptr)>>4)&3;
*ptr2++=((*ptr)>>2)&3;
*ptr2++=( *ptr) &3;
ptr++;
}
/* Put the ball and box into their Board position */
*(Board+BallOffset) = BALL;
*(Board+BoxOffset) = BOX;
DrawBoard(); /* Display the clean Board */
#ifdef SOUND
bit_fx4 (1);
#endif
#ifdef SOUNDB
bit_fx6 (0);
#endif
}
void DrawBoard(void)
{
int x,y;
char *ptr;
ptr = Board;
#ifdef __TIKI100__
gr_defmod(1);
#endif
clg(); /* clear the screen */
for (y=0 ; y!=9 ; y++)
{
for (x=0 ; x!=16 ; x++)
{
#ifdef xsize
putsprite(spr_or,(x*xsize),(y*spritesize),sprites + (spritemem * (*ptr++)));
#else
putsprite(spr_or,(x*spritesize),(y*spritesize),sprites + (spritemem * (*ptr++)));
#endif
}
}
}
/* Check if a Level is (not) finished:
* There are 144 squares in each Level
*
* Note the use of != instead of < or <=
* - this is faster to execute on the Z80!
*/
char CheckNotFinished(void)
{
char *ptr;
int i;
ptr = Board;
for(i=1 ; i!=144 ; i++)
{
if(*ptr++ == BUBB) return(TRUE); /* Are there any bubbles? */
}
if(++Level == MAXLEVEL) return(FALSE); /* All levels done? */
SetupLevel(); /* If not => Next Level! */
return(TRUE); /* And keep scanning keys */
}
/* Check to see if we're running into anything:
* - The box stops for everything (exept empty space [= 0])
* - The ball stops for everything exept a bubble
*/
char TestNextPosIsStop(char nextpos)
{
if(!PieceIsBall)
if (nextpos==BUBB) return(FALSE);
return(nextpos);
}
void MovePiece(char *ptr, char plusx, char plusy)
{
char *locn;
char temp,temp2;
int x,y;
temp = PieceIsBall + 3;
temp2 = (plusx + (plusy * 16));
while(1) /* loop */
{
locn = *(ptr) + Board;
if(TestNextPosIsStop(*(locn+temp2))) return; /* till edge */
y = (*(ptr) / 16);
#ifdef xsize
x = (*(ptr) - (y * 16)) * xsize;
#else
x = (*(ptr) - (y * 16)) * spritesize;
#endif
y *= spritesize;
if(*(locn+temp2)==BUBB)
{
#ifdef xsize
putsprite(spr_and,x+(plusx*xsize),y+(plusy*spritesize),sprites + (spritemem * BUBB));
#else
putsprite(spr_and,x+(plusx*spritesize),y+(plusy*spritesize),sprites + (spritemem * BUBB));
#endif
#ifdef SOUND
bit_fx2 (5);
#endif
#ifdef SOUNDB
bit_fx6 (3);
#endif
}
*(locn+temp2) = *locn;
*locn = 0;
/* remove old */
putsprite(spr_and,x,y,sprites + (spritemem * temp));
/* put new */
#ifdef xsize
putsprite(spr_or,x+(plusx*xsize),y+(plusy*spritesize),sprites + (spritemem * temp));
#else
putsprite(spr_or,x+(plusx*spritesize),y+(plusy*spritesize),sprites + (spritemem * temp));
#endif
#ifdef SOUND
bit_fx2 (2);
#endif
#ifdef SOUNDB
bit_fx6 (7);
#endif
(*ptr) += temp2;
}
}