]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/gamec/campaign.c
sv_public now zeroed out; g_campaign set in a non-campaign match is now non-fatal.
[divverent/nexuiz.git] / data / qcsrc / server / gamec / campaign.c
1 // campaign cvars:
2 //   _campaign_index: index of CURRENT map
3 //   g_campaign_index: index of current LAST map (saved)
4 //   g_campaign_skill: bot skill offset
5
6 float campaign_level;
7 float campaign_won;
8
9 void(string s) CampaignBailout =
10 {
11         cvar_set("g_campaign", "0");
12         bprint(strcat("campaign initialization failed: ", s, "\n"));
13         //error(strcat("campaign initialization failed: ", s, "\n"));
14         return;
15 }
16
17 string fstrunzone(string s)
18 {
19         string t;
20         t = strcat(s);
21         strunzone(s);
22         return t;
23 }
24
25 // NOTE: s may not be a tempstring here
26 string Campaign_wordwrap(string s, float l)
27 {
28         string t;
29         string word;
30
31         float lleft;
32         float i;
33
34         float startidx;
35
36         startidx = 0;
37
38         t = strzone("");
39
40         lleft = l;
41         for(i = 0; i <= strlen(s); ++i)
42         {
43                 if(i != strlen(s) && substring(s, i, 1) != " ")
44                         continue;
45
46                 word = substring(s, startidx, i - startidx);
47                 startidx = i + 1;
48                 
49                 if(word == "+++")
50                 {
51                         t = fstrunzone(t);
52                         t = strzone(strcat(t, "\n\n"));
53                         lleft = l;
54                 }
55                 else if(strlen(word) < lleft)
56                 {
57                         t = fstrunzone(t);
58                         if(lleft != l)
59                         {
60                                 t = strcat(t, " ");
61                                 lleft = lleft - 1;
62                         }
63                         t = strzone(strcat(t, word));
64                         lleft = lleft - strlen(word);
65                 }
66                 else
67                 {
68                         t = fstrunzone(t);
69                         t = strzone(strcat(t, "\n", word));
70                         lleft = l - strlen(word);
71                 }
72         }
73         t = fstrunzone(t);
74         return t;
75 }
76
77 void() CampaignPreInit =
78 {
79         float baseskill;
80         string title;
81         campaign_level = cvar("_campaign_index");
82         CampaignFile_Load(campaign_level, 2);
83         if(campaign_entries < 1)
84                 return CampaignBailout("unknown map");
85         cvar_set("bot_number", ftos(campaign_bots[0]));
86
87         baseskill = cvar("g_campaign_skill");
88         baseskill = baseskill + campaign_botskill[0];
89         if(baseskill < 0)
90                 baseskill = 0;
91         cvar_set("skill", ftos(baseskill));
92
93         cvar_set("sv_public", "0");
94
95         title = campaign_shortdesc[0];
96         campaign_message = strzone(strcat("\n\n\n\n\n\n\n\n\n\n^1\n", title, "\n^3\n", Campaign_wordwrap(campaign_longdesc[0], 50), "\n\n^1press jump to enter the game"));
97 }
98
99 string GetMapname();
100 void() CampaignPostInit =
101 {
102         // now some sanity checks
103         string thismapname;
104         thismapname = GetMapname();
105         if(campaign_mapcfgname[0] != thismapname)
106                 return CampaignBailout(strcat("wrong map: ", campaign_mapcfgname[0], " != ", thismapname));
107         cvar_set("fraglimit", ftos(campaign_fraglimit[0]));
108         cvar_set("timelimit", "0");
109 }
110
111 void() CampaignPreIntermission =
112 {
113         entity head;
114         float won;
115         float lost;
116
117         won = 0;
118         
119         head = findchain(classname, "player");
120         while(head)
121         {
122                 if(clienttype(head) == CLIENTTYPE_REAL)
123                 {
124                         if(head.winning)
125                                 won = won + 1;
126                         else
127                                 lost = lost + 1;
128                 }
129                 head = head.chain;
130         }
131
132         if(won == 1 && lost == 0)
133         {
134                 campaign_won = 1;
135                 bprint("The current level has been WON.\n");
136                 // sound!
137         }
138         else
139         {
140                 campaign_won = 0;
141                 bprint("The current level has been LOST.\n");
142                 // sound!
143         }
144
145         if(campaign_won)
146         {
147                 if(campaign_level == cvar("g_campaign_index"))
148                 {
149                         // advance level
150                         localcmd("set g_campaign_index ");
151                         localcmd(ftos(campaign_level + 1));
152                         localcmd("\n");
153                 }
154                 if(campaign_entries < 2)
155                 {
156                         localcmd("set g_campaign_index 0\n");
157                         localcmd("set g_campaign_won 1\n");
158                 }
159         }
160 }
161
162 void() CampaignPostIntermission =
163 {
164         // NOTE: campaign_won is 0 or 1, that is, points to the next level
165
166         if(campaign_won && campaign_entries < 2)
167         {
168                 // last map won!
169                 localcmd("togglemenu\n");
170                 CampaignFile_Unload();
171                 return;
172         }
173
174         CampaignSetup(campaign_won);
175         CampaignFile_Unload();
176         strunzone(campaign_message);
177 }
178
179
180
181 void(float n) CampaignLevelWarp =
182 {
183         if(!cvar("sv_cheats"))
184                 return;
185         CampaignFile_Unload();
186         CampaignFile_Load(n, 1);
187         if(campaign_entries)
188                 CampaignSetup(0);
189         else
190                 error("Sorry, cheater. You are NOT WELCOME.");
191         CampaignFile_Unload();
192 }