summaryrefslogtreecommitdiff
path: root/source/main.c
blob: 2cf55791f22f00c6be9f1c7990e1c89d6c60588b (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
/*
   dsspec - Nintendo DS Sinclair Spectrum 48K 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 <stdlib.h>
#include <stdio.h>
#include <nds.h>

#include "framebuffer.h"
#include "gui.h"

#include "splashimg_bin.h"

/* ---------------------------------------- STATIC DATA
*/


/* ---------------------------------------- DISPLAY FUNCS
*/
static void VBlankFunc(void)
{
    scanKeys();
}

static void Splash(void)
{
    static const char *text[]=
    {
    	"DS-SPEC",
	"\177 2006 Ian C",
	" ",
	"SPECTRUM ROM",
	"\177 Amstrad PLC",
	" ",
	"Manic Miner",
	"by Matthew Smith",
	" ",
	"Ant Attack by",
	"Sandy White/Angela Sutherland",
	" ",
	"Thrust by",
	"Jeremy Smith and D.Lowe", 
	" ",
	"Only play these images if",
	"you legallly own a copy.",
	" ",
	"PRESS A TO CONTINUE",
	" ",
	"http://www.noddybox.co.uk/",
	NULL
    };

    sImage img;
    int f;

    loadPCX(splashimg_bin,&img);
    image8to16(&img);
    dmaCopy(img.data8,BG_GFX,SCREEN_WIDTH*SCREEN_HEIGHT*2);

    FB_Clear();

    for(f=0;f<SCREEN_HEIGHT;f++)
    {
	FB_HLine(0,SCREEN_WIDTH-1,f,FB_RGB(f/8,0,0));
    }

    FB_Box(0,0,SCREEN_WIDTH,SCREEN_HEIGHT,FB_RGB(31,31,31));

    for(f=0;text[f];f++)
    {
	FB_Centre(text[f],10+f*8,FB_RGB(31,31,31),-1);
    }

    while(!(keysDown() & KEY_A))
    {
	swiWaitForVBlank();
    }
}


/* ---------------------------------------- MAIN
*/
int main(int argc, char *argv[])
{
    powerON(POWER_ALL_2D);

    videoSetMode(MODE_5_2D | DISPLAY_BG2_ACTIVE);

    vramSetBankA(VRAM_A_MAIN_BG_0x6000000);
    BG2_CR = BG_BMP16_256x256;
    BG2_XDX = 0x100;
    BG2_XDY = 0;
    BG2_YDX = 0;
    BG2_YDY = 0x100;
    BG2_CX = 0;
    BG2_CY = 0;

    videoSetModeSub(MODE_5_2D | DISPLAY_BG2_ACTIVE);

    vramSetBankC(VRAM_C_SUB_BG_0x6200000);
    SUB_BG2_CR = BG_BMP16_256x256;
    SUB_BG2_XDX = 0x100;
    SUB_BG2_XDY = 0;
    SUB_BG2_YDX = 0;
    SUB_BG2_YDY = 0x100;
    SUB_BG2_CX = 0;
    SUB_BG2_CY = 0;

    irqInit();
    irqSet(IRQ_VBLANK,VBlankFunc);

    keysSetRepeat(30,15);

    FB_Init(BG_GFX_SUB);

    Splash();

    while(1)
    {
	static const char *menu[]={"Option #1","A longer option","Short","Wibble Sticks!",NULL};
	char buff[32];

	sprintf(buff,"sel=%d",GUI_Menu(menu));
	FB_Centre(buff,SCREEN_HEIGHT-10,FB_RGB(31,31,31),FB_RGB(0,0,15));
    }

    return 0;
}