File: menu.cpp

package info (click to toggle)
openssn 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 7,340 kB
  • sloc: cpp: 10,973; makefile: 80
file content (223 lines) | stat: -rw-r--r-- 6,466 bytes parent folder | download | duplicates (4)
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
#include <SDL.h>
#include "files.h"
#include "menu.h"
#include "draw.h"
#include "dfont.h"


SDL_Surface *menu_screen;

int Main_Menu(int *mission_number, SDL_Surface *screen)
{
   SDL_Rect dest;
   int command = 0;
   int selected_button = BUTTON_PLAY;
   int action;
   Uint32 menu_colour = SDL_MapRGB(screen->format, 0, 200,0);
   menu_screen = screen;

   dest.x = 400; dest.y = 0; dest.w = 624; dest.h = 768;
   Display_Mission(*mission_number);
   while (! command)
   {
       Draw_Main_Menu(selected_button, menu_colour);
       SDL_UpdateRects(menu_screen, 1, &dest);
       action = Menu_Input();
       if (action == BUTTON_ACTIVATE)
          action = selected_button;
       switch (action)
       {
          case BUTTON_PLAY: command = ACTION_MISSION; break;
          case BUTTON_QUIT: command = ACTION_QUIT; break;
          case BUTTON_PREV_MISSION:
                 selected_button = BUTTON_PREV_MISSION;
                 *mission_number = New_Mission(MISSION_PREVIOUS, *mission_number);
                 Display_Mission(*mission_number);
                 break;
          case BUTTON_NEXT_MISSION:
                 selected_button = BUTTON_NEXT_MISSION;
                 *mission_number = New_Mission(MISSION_NEXT, *mission_number);
                 Display_Mission(*mission_number);
                 break;
          case BUTTON_MOVE_UP:
                 selected_button--;
                 if (selected_button < BUTTON_PLAY)
                    selected_button = BUTTON_NEXT_MISSION;
                 break;
          case BUTTON_MOVE_DOWN:
                 selected_button++;
                 if (selected_button > BUTTON_NEXT_MISSION)
                     selected_button = BUTTON_PLAY;
                 break;
                 
       }
       SDL_Delay(100);
   }

   #ifdef DEBUG
   printf("Returning menu command: %d\n", command);
   #endif
   return command;
}



int New_Mission(int next_prev, int old_mission)
{
   FILE *mission_file;
   char *mission_path;
   char mission_filename[256];
   int new_mission;

   if (next_prev == MISSION_PREVIOUS)
   {
      new_mission = old_mission - 1;
      if (new_mission < 0)
        new_mission = 0;
   }
   else
   {
      new_mission = old_mission + 1;
   }

   #ifndef WIN32
   snprintf(mission_filename, 256, "data/mission%d.dat", new_mission);
   #else
   sprintf(mission_filename, "data/mission%d.dat", new_mission);
   #endif
   mission_path = Find_Data_File(mission_filename);
   mission_file = fopen(mission_path, "r");
   if ( (mission_path) && (mission_path != mission_filename) )
      free(mission_path);

   // found mission file, return the new number
   if (mission_file)
   {
       fclose(mission_file);
       return new_mission;
   }

   // we do not have a matching mission file, return the last good one
   return old_mission;
}



int Display_Mission(int mission_number)
{
   char *full_path, filename[256];
   FILE *mission_file;
   char line[256];
   int y = 610;
   DFont my_font("images/font.png", "data/font.dat");
   Uint32 menu_background = SDL_MapRGB(menu_screen->format, 0, 0, 0);
 
   #ifndef WIN32 
   snprintf(filename, 256, "data/orders%d.txt", mission_number);
   #else
   sprintf(filename, "data/orders%d.txt", mission_number);
   #endif
   full_path = Find_Data_File(filename);
   mission_file = fopen(full_path, "r");
   if ( (full_path) && (full_path != filename) )
      free(full_path);
   if (mission_file)
   {
      FillRectangle(menu_screen, 440, 610, 980, 730, menu_background);
      full_path = fgets(line, 256, mission_file);
      while (full_path)
      {  
         my_font.PutString(menu_screen, 440, y, line);
         full_path = fgets(line, 256, mission_file);
         y += 12;
      }
      fclose(mission_file);
   }
   return TRUE;
}



int Draw_Main_Menu(int selected, Uint32 menu_colour)
{
   Uint32 menu_background = SDL_MapRGB(menu_screen->format, 0, 0, 0);
   // wipe everything first
   DrawRectangle(menu_screen, 540, 160, 885, 235, menu_background);
   DrawRectangle(menu_screen, 540, 260, 885, 335, menu_background);
   FillCircle(menu_screen, 465, 565, 5, menu_background);
   FillCircle(menu_screen, 940, 565, 5, menu_background);

   switch (selected)
   {
      case BUTTON_PLAY:
           DrawRectangle(menu_screen, 540, 160, 885, 235, menu_colour);
           break;
      case BUTTON_QUIT:
           DrawRectangle(menu_screen, 540, 260, 885, 335, menu_colour);
           break;
      case BUTTON_PREV_MISSION:
           FillCircle(menu_screen, 465, 565, 5, menu_colour);
           break;
      case BUTTON_NEXT_MISSION:
           FillCircle(menu_screen, 940, 565, 5, menu_colour);
           break;

   }
   return TRUE;
}



int Menu_Input()
{
   int action = 0;
   SDL_Event event;
   int mousex, mousey;

   #ifdef DEBUG
   printf("About to check for event.\n");
   #endif
   while ( SDL_PollEvent(&event) )
   {
      #ifdef DEBUG
      printf("Got event.\n");
      #endif
      switch (event.type)
      {
          case SDL_MOUSEBUTTONDOWN:
                mousex = event.button.x;
                mousey = event.button.y;
                if ( (mousex > 540) && (mousex < 885) &&
                     (mousey > 160) && (mousey < 235) )
                     action = BUTTON_PLAY;
                else if ( (mousex > 540) && (mousex < 885) &&
                          (mousey > 260) && (mousey < 335) )
                     action = BUTTON_QUIT;
                else if ( (mousex > 440) && (mousex < 475) &&
                          (mousey > 550) && (mousey < 580) )
                     action = BUTTON_PREV_MISSION;
                else if ( (mousex > 920) && (mousex < 960) &&
                          (mousey > 550) && (mousey < 580) )
                     action = BUTTON_NEXT_MISSION;

          break;   // end of mouse stuff
          case SDL_KEYDOWN:
             if (event.key.keysym.sym == SDLK_UP)
                  action = BUTTON_MOVE_UP;
             else if (event.key.keysym.sym == SDLK_DOWN)
                  action = BUTTON_MOVE_DOWN;
             else if (event.key.keysym.sym == SDLK_ESCAPE)
                  action = BUTTON_QUIT;
             else if ( (event.key.keysym.sym == SDLK_SPACE) ||
                       (event.key.keysym.sym == SDLK_RETURN) )
                  action = BUTTON_ACTIVATE;
             break;
      }   // end of switch
   }      // end of which event
   
   #ifdef DEBUG
   printf("Returning action: %d\n", action);
   #endif
   return action;
}