]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_termsofservice.qc
Add a string_null check to inputbox input filter
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_termsofservice.qc
1 #include "dialog_termsofservice.qh"
2
3 #include "../menu.qh"
4 #include "mainwindow.qh"
5 #include "dialog_firstrun.qh"
6 #include "textbox.qh"
7 #include "textlabel.qh"
8 #include "button.qh"
9 #include "util.qh"
10
11 void Close_Clicked(entity btn, entity me)
12 {
13         LOG_INFOF("Accepted ToS version %d", _Nex_ExtResponseSystem_NewToS);
14         cvar_set("_termsofservice_accepted", ftos(_Nex_ExtResponseSystem_NewToS));
15         localcmd("saveconfig\n");
16         if (main.firstRunDialog.shouldShow())
17                 main.firstDraw = true;
18         Dialog_Close(btn, me);
19 }
20
21 void DontAccept_Clicked(entity btn, entity me)
22 {
23         localcmd("quit\n");
24 }
25
26 void XonoticToSDialog_loadXonoticToS(entity me)
27 {
28         url_single_fopen(termsofservice_url, FILE_READ, XonoticToS_OnGet, me);
29 }
30
31 void XonoticToS_OnGet(entity fh, entity me, int status)
32 {
33         switch (status) {
34                 case URL_READY_CLOSED:
35                 {
36                         break;
37                 }
38                 case URL_READY_ERROR:
39                 {
40                         me.textBox.setText(me.textBox, "Error reading ToS");
41                         break;
42                 }
43                 case URL_READY_CANREAD:
44                 {
45                         string temp = "";
46                         for (string s; (s = url_fgets(fh)); )
47                         {
48                                 if (temp != "")
49                                         temp = strcat(temp, "\n", s);
50                                 else
51                                         temp = s;
52                         }
53                         url_fclose(fh);
54                         me.textBox.setText(me.textBox, temp);
55                         break;
56                 }
57                 default:
58                 {
59                         break;
60                 }
61         }
62 }
63
64 bool XonoticToSDialog_shouldShow()
65 {
66         return (_Nex_ExtResponseSystem_NewToS && _Nex_ExtResponseSystem_NewToS > autocvar__termsofservice_accepted);
67 }
68
69 void XonoticToSDialog_fill(entity me)
70 {
71         entity e;
72         string subtitle;
73
74         if (autocvar__termsofservice_accepted > 0)
75                 subtitle = _("Terms of Service have been updated. Please read them before continuing:");
76         else
77                 subtitle = _("Welcome to Xonotic! Please read the following Terms of Service:");
78
79         me.TR(me);
80                 me.TD(me, 1, 5, e = makeXonoticTextLabel(0, subtitle));
81                 e.allowWrap = 1;
82
83         me.TR(me);
84         me.TR(me);
85                 me.TD(me, me.rows - 4, me.columns, me.textBox = makeXonoticTextBox());
86                         me.textBox.allowColors = true;
87
88         me.TR(me);
89         me.gotoRC(me, me.rows - 1, 0);
90
91                 me.TD(me, 1, me.columns/2, e = makeXonoticButton(_("Accept"), '0 1 0'));
92                 e.onClick = Close_Clicked;
93                 e.onClickEntity = me;
94
95                 me.TD(me, 1, me.columns/2, e = makeXonoticButton(_("Don't accept (quit the game)"), '1 0 0'));
96                 e.onClick = DontAccept_Clicked;
97                 e.onClickEntity = me;
98 }
99