File: ex_winfull.c

package info (click to toggle)
allegro5 2%3A5.2.10.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,820 kB
  • sloc: ansic: 109,795; cpp: 12,976; objc: 4,592; java: 2,845; python: 2,595; javascript: 1,238; sh: 1,008; makefile: 40; xml: 27; pascal: 24
file content (69 lines) | stat: -rw-r--r-- 1,674 bytes parent folder | download | duplicates (5)
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
#include "allegro5/allegro.h"

#include "common.c"

int main(int argc, char **argv)
{
   ALLEGRO_DISPLAY *win, *full;
   ALLEGRO_EVENT_QUEUE *events;
   ALLEGRO_EVENT event;

   (void)argc;
   (void)argv;

   if (!al_init()) {
      abort_example("Could not init Allegro.\n");
   }

   al_install_keyboard();

   if (al_get_num_video_adapters() < 2) {
      abort_example("This example requires multiple video adapters.\n");
   }

   al_set_new_display_adapter(1);
   al_set_new_display_flags(ALLEGRO_WINDOWED);
   win = al_create_display(640, 480);
   if (!win) {
      abort_example("Error creating windowed display on adapter 1 "
	  "(do you have multiple adapters?)\n");
   }

   al_set_new_display_adapter(0);
   al_set_new_display_flags(ALLEGRO_FULLSCREEN);
   full = al_create_display(640, 480);
   if (!full) {
      abort_example("Error creating fullscreen display on adapter 0\n");
   }

   events = al_create_event_queue();
   al_register_event_source(events, al_get_keyboard_event_source());

   while (1) {
      while (!al_is_event_queue_empty(events)) {
         al_get_next_event(events, &event);
         if (event.type == ALLEGRO_EVENT_KEY_DOWN &&
               event.keyboard.keycode == ALLEGRO_KEY_ESCAPE)
            goto done;
      }

      al_set_target_backbuffer(full);
      al_clear_to_color(al_map_rgb(rand()%255, rand()%255, rand()%255));
      al_flip_display();

      al_set_target_backbuffer(win);
      al_clear_to_color(al_map_rgb(rand()%255, rand()%255, rand()%255));
      al_flip_display();

      al_rest(0.5);
   }

done:
   al_destroy_event_queue(events);

   al_destroy_display(win);
   al_destroy_display(full);

   return 0;
}