Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
94 lines (85 loc) · 2.03 KB

File metadata and controls

executable file
·
94 lines (85 loc) · 2.03 KB
 
1
2
3
4
#include <SDL/SDL.h>
#if defined(NDS) || defined(__NDS__) || defined (__NDS)
#include <nds.h>
Aug 16, 2008
Aug 16, 2008
5
#include <fat.h>
6
7
8
#else
#define swiWaitForVBlank()
#define consoleDemoInit()
Aug 16, 2008
Aug 16, 2008
9
#define fatInitDefault()
10
11
12
#define RGB15(r,g,b) SDL_MapRGB(screen->format,((r)<<3),((g)<<3),((b)<<3))
#endif
Aug 16, 2008
Aug 16, 2008
13
14
15
16
17
18
19
20
21
22
23
24
void splash(SDL_Surface *screen, int s) {
SDL_Surface *logo;
SDL_Rect area = {0,0,256,192};
logo = SDL_LoadBMP("sdl.bmp");
if(!logo) {
printf("Couldn't splash.\n");
return;
}
/*logo->flags &= ~SDL_PREALLOC;*/
SDL_BlitSurface(logo, NULL, screen, &area);
SDL_Flip(screen);
25
26
27
28
29
30
31
32
33
34
35
while(s-- > 0) {
int i = 60;
while(--i) swiWaitForVBlank();
}
}
int main(void) {
SDL_Surface *screen;
SDL_Joystick *stick;
SDL_Event event;
SDL_Rect rect = {8,8,240,176};
Aug 16, 2008
Aug 16, 2008
36
int i;
Aug 16, 2008
Aug 16, 2008
38
39
consoleDemoInit(); puts("Hello world! Initializing FAT...");
fatInitDefault();
40
41
42
43
44
if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_JOYSTICK) < 0) {
puts("# error initializing SDL");
puts(SDL_GetError());
return 1;
}
Aug 16, 2008
Aug 16, 2008
45
puts("* initialized SDL");
Aug 16, 2008
Aug 16, 2008
46
screen = SDL_SetVideoMode(256, 192, 15, SDL_SWSURFACE);
47
48
49
50
51
if(!screen) {
puts("# error setting video mode");
puts(SDL_GetError());
return 2;
}
Aug 16, 2008
Aug 16, 2008
52
screen->flags &= ~SDL_PREALLOC;
Aug 16, 2008
Aug 16, 2008
53
puts("* set video mode");
54
55
56
57
58
59
stick = SDL_JoystickOpen(0);
if(stick == NULL) {
puts("# error opening joystick");
puts(SDL_GetError());
// return 3;
}
Aug 16, 2008
Aug 16, 2008
60
puts("* opened joystick");
Aug 16, 2008
Aug 16, 2008
61
62
63
/*splash(screen, 3);*/
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
SDL_FillRect(screen, &rect, RGB15(0,0,31)|0x8000);
SDL_Flip(screen);
while(1)
while(SDL_PollEvent(&event))
switch(event.type) {
case SDL_JOYBUTTONDOWN:
switch(event.jbutton.which) {
case 0:
SDL_FillRect(screen, &rect, RGB15(31,0,0)|0x8000);
break;
case 1:
SDL_FillRect(screen, &rect, RGB15(0,31,0)|0x8000);
break;
case 2:
SDL_FillRect(screen, &rect, RGB15(0,0,31)|0x8000);
break;
case 3:
SDL_FillRect(screen, &rect, RGB15(0,0,0)|0x8000);
break;
default: break;
}
Aug 16, 2008
Aug 16, 2008
86
printf("joy_%d, at %d\n", event.jbutton.which, SDL_GetTicks());
87
88
89
90
91
92
93
94
SDL_Flip(screen);
break;
case SDL_QUIT: SDL_Quit(); return 0;
default: break;
}
return 0;
}