Question
Make a star field as in Star Trek (the original series), like MS's screensaver. I want to fly! #include void init(); void deinit(); int main()
Make a star field as in Star Trek (the original series), like MS's screensaver. I want to fly!
#include
void init(); void deinit();
int main() { init();
while (!key[KEY_ESC]) { /* put your code here */ }
deinit(); return 0; } END_OF_MAIN()
void init() { int depth, res; allegro_init(); depth = desktop_color_depth(); if (depth == 0) depth = 32; set_color_depth(depth); res = set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0); if (res != 0) { allegro_message(allegro_error); exit(-1); }
install_timer(); install_keyboard(); install_mouse(); /* add other initializations here */ }
void deinit() { clear_keybuf(); /* add other deinitializations here */ }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started