OSDN Git Service

#37287 (2.2.0.40) cmd1.c内のC4457警告に対応。 / Deal C4457 warning in cmd1.c.
[hengband/hengband.git] / src / report.c
1 /*!
2  * @file report.c
3  * @brief スコアサーバ転送機能の実装
4  * @date 2014/07/14
5  * @author Hengband Team
6  */
7
8 #define _GNU_SOURCE /*!< 未使用*/
9 #include "angband.h"
10
11 #ifdef WORLD_SCORE
12
13 #include <stdio.h>
14 #include <stdarg.h>
15 #include <ctype.h>
16 #include <string.h>
17
18 #if defined(WINDOWS)
19 #include <winsock.h>
20 #elif defined(MACINTOSH)
21 #include <OpenTransport.h>
22 #include <OpenTptInternet.h>
23 #else
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <netdb.h>
28 #include <sys/time.h>
29
30 #include <setjmp.h>
31 #include <signal.h>
32 #endif
33
34 /*
35  * internet resource value
36  */
37 #define HTTP_PROXY ""                   /*!< デフォルトのプロキシURL / Default proxy url */
38 #define HTTP_PROXY_PORT 0               /*!< デフォルトのプロキシポート / Default proxy port */
39 #define HTTP_TIMEOUT    20              /*!< デフォルトのタイムアウト時間(秒) / Timeout length (second) */
40 #define SCORE_SERVER "moon.kmc.gr.jp"   /*!< デフォルトのスコアサーバURL / Default score server url */
41 #define SCORE_PORT 80                   /*!< デフォルトのスコアサーバポート / Default score server port */
42
43 #ifdef JP
44 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/hengscore/score.cgi" /*!< スコア開示URL */
45 #else
46 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/hengscore-en/score.cgi" /*!< スコア開示URL */
47 #endif
48
49 /* for debug */
50 #if 0
51 #define SCORE_PATH "http://moon.kmc.gr.jp/hengband/scoretest/score.cgi" /*!< スコア開示URL */
52 #endif
53
54 /*
55  * simple buffer library
56  */
57 typedef struct {
58         size_t max_size;
59         size_t size;
60         char *data;
61 } BUF;
62
63 #define BUFSIZE (65536) /*!< スコアサーバ転送バッファサイズ */
64
65 /*!
66  * @brief 転送用バッファの確保
67  * @return 確保したバッファの参照ポインタ
68  */
69 static BUF* buf_new(void)
70 {
71         BUF *p;
72
73         if ((p = malloc(sizeof(BUF))) == NULL)
74                 return NULL;
75
76         p->size = 0;
77         p->max_size = BUFSIZE;
78         if ((p->data = malloc(BUFSIZE)) == NULL)
79         {
80                 free(p);
81                 return NULL;
82         }
83         return p;
84 }
85
86 /*!
87  * @brief 転送用バッファの解放
88  * @param b 解放するバッファの参照ポインタ
89  */
90 static void buf_delete(BUF *b)
91 {
92         free(b->data);
93         free(b);
94 }
95
96 /*!
97  * @brief 転送用バッファにデータを追加する
98  * @param buf 追加先バッファの参照ポインタ
99  * @param data 追加元データ
100  * @param size 追加サイズ
101  * @return 追加後のバッファ容量
102  */
103 static int buf_append(BUF *buf, const char *data, size_t size)
104 {
105         while (buf->size + size > buf->max_size)
106         {
107                 char *tmp;
108                 if ((tmp = malloc(buf->max_size * 2)) == NULL) return -1;
109
110                 memcpy(tmp, buf->data, buf->max_size);
111                 free(buf->data);
112
113                 buf->data = tmp;
114
115                 buf->max_size *= 2;
116         }
117         memcpy(buf->data + buf->size, data, size);
118         buf->size += size;
119
120         return buf->size;
121 }
122
123 /*!
124  * @brief 転送用バッファにフォーマット指定した文字列データを追加する
125  * @param buf 追加先バッファの参照ポインタ
126  * @param fmt 文字列フォーマット
127  * @return 追加後のバッファ容量
128  */
129 static int buf_sprintf(BUF *buf, const char *fmt, ...)
130 {
131         int             ret;
132         char    tmpbuf[8192];
133         va_list ap;
134
135         va_start(ap, fmt);
136 #if defined(HAVE_VSNPRINTF)
137         ret = vsnprintf(tmpbuf, sizeof(tmpbuf), fmt, ap);
138 #else
139         ret = vsprintf(tmpbuf, fmt, ap);
140 #endif
141         va_end(ap);
142
143         if (ret < 0) return -1;
144
145 #if ('\r' == 0x0a && '\n' == 0x0d)
146         {
147                 /*
148                  * Originally '\r'= CR (= 0x0d) and '\n'= LF (= 0x0a)
149                  * But for MPW (Macintosh Programers Workbench), these
150                  * are reversed so that '\r'=LF and '\n'=CR unless the
151                  * -noMapCR option is not defined.
152                  *
153                  * We need to swap back these here since the score
154                  * dump text should be written using LF as the end of
155                  * line.
156                  */
157                 char *ptr;
158                 for (ptr = tmpbuf; *ptr; ptr++)
159                 {
160                         if (0x0d == *ptr) *ptr = 0x0a;
161                 }
162         }
163 #endif
164
165         ret = buf_append(buf, tmpbuf, strlen(tmpbuf));
166
167         return ret;
168 }
169
170 #if 0
171 static int buf_read(BUF *buf, int fd)
172 {
173         int len;
174 #ifndef MACINTOSH
175         char tmp[BUFSIZE];
176 #else
177         char *tmp;
178         
179         tmp = calloc( BUFSIZE , sizeof(char) );
180 #endif
181
182         while ((len = read(fd, tmp, BUFSIZE)) > 0)
183                 buf_append(buf, tmp, len);
184
185         return buf->size;
186 }
187 #endif
188
189 #if 0
190 static int buf_write(BUF *buf, int fd)
191 {
192         write(fd, buf->data, buf->size);
193
194         return buf->size;
195 }
196
197 static int buf_search(BUF *buf, const char *str)
198 {
199         char *ret;
200
201         ret = my_strstr(buf->data, str);
202
203         if (!ret) return -1;
204
205         return ret - buf->data;
206 }
207
208 static BUF * buf_subbuf(BUF *buf, int pos1, size_t sz)
209 {
210         BUF *ret;
211
212         if (pos1 < 0) return NULL;
213
214         ret = buf_new();
215
216         if (sz <= 0) sz = buf->size - pos1;
217
218         buf_append(ret, buf->data + pos1, sz);
219
220         return ret;
221 }
222 #endif
223
224 /*!
225  * @brief HTTPによるダンプ内容伝送
226  * @param sd ソケットID
227  * @param url 伝送先URL
228  * @param buf 伝送内容バッファ
229  * @return なし
230  */
231 static void http_post(int sd, cptr url, BUF *buf)
232 {
233         BUF *output;
234
235         output = buf_new();
236         buf_sprintf(output, "POST %s HTTP/1.0\n", url);
237         buf_sprintf(output, "User-Agent: Hengband %d.%d.%d\n",
238                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
239
240         buf_sprintf(output, "Content-Length: %d\n", buf->size);
241         buf_sprintf(output, "Content-Encoding: binary\n");
242         buf_sprintf(output, "Content-Type: application/octet-stream\n");
243         buf_sprintf(output, "\n");
244         buf_append(output, buf->data, buf->size);
245
246         soc_write(sd, output->data, output->size);
247 }
248
249 /*!
250  * @brief キャラクタダンプを作って BUFに保存
251  * @param dumpbuf 伝送内容バッファ
252  * @return エラーコード
253  */
254 static errr make_dump(BUF* dumpbuf)
255 {
256         char            buf[1024];
257         FILE *fff;
258         char file_name[1024];
259
260         /* Open a new file */
261         fff = my_fopen_temp(file_name, 1024);
262         if (!fff)
263         {
264 #ifdef JP
265                 msg_format("一時ファイル %s を作成できませんでした。", file_name);
266 #else
267                 msg_format("Failed to create temporary file %s.", file_name);
268 #endif
269                 msg_print(NULL);
270                 return 1;
271         }
272
273         /* 一旦一時ファイルを作る。通常のダンプ出力と共通化するため。 */
274         (void)make_character_dump(fff);
275
276         /* Close the file */
277         my_fclose(fff);
278
279         /* Open for read */
280         fff = my_fopen(file_name, "r");
281
282         while (fgets(buf, 1024, fff))
283         {
284                 (void)buf_sprintf(dumpbuf, "%s", buf);
285         }
286
287         /* Close the file */
288         my_fclose(fff);
289
290         /* Remove the file */
291         fd_kill(file_name);
292
293         /* Success */
294         return (0);
295 }
296
297 /*!
298  * @brief スクリーンダンプを作成する/ Make screen dump to buffer
299  * @return 作成したスクリーンダンプの参照ポインタ
300  */
301 cptr make_screen_dump(void)
302 {
303         BUF *screen_buf;
304         int y, x, i;
305         cptr ret;
306
307         byte a = 0, old_a = 0;
308         char c = ' ';
309
310         static cptr html_head[] = {
311                 "<html>\n<body text=\"#ffffff\" bgcolor=\"#000000\">\n",
312                 "<pre>",
313                 0,
314         };
315         static cptr html_foot[] = {
316                 "</pre>\n",
317                 "</body>\n</html>\n",
318                 0,
319         };
320
321         bool old_use_graphics = use_graphics;
322
323         int wid, hgt;
324
325         Term_get_size(&wid, &hgt);
326
327         /* Alloc buffer */
328         screen_buf = buf_new();
329         if (screen_buf == NULL) return (NULL);
330
331         if (old_use_graphics)
332         {
333                 /* Clear -more- prompt first */
334                 msg_print(NULL);
335
336                 use_graphics = FALSE;
337                 reset_visuals();
338
339                 /* Redraw everything */
340                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
341
342                 /* Hack -- update */
343                 handle_stuff();
344         }
345
346         for (i = 0; html_head[i]; i++)
347                 buf_sprintf(screen_buf, html_head[i]);
348
349         /* Dump the screen */
350         for (y = 0; y < hgt; y++)
351         {
352                 /* Start the row */
353                 if (y != 0)
354                         buf_sprintf(screen_buf, "\n");
355
356                 /* Dump each row */
357                 for (x = 0; x < wid - 1; x++)
358                 {
359                         int rv, gv, bv;
360                         cptr cc = NULL;
361                         /* Get the attr/char */
362                         (void)(Term_what(x, y, &a, &c));
363
364                         switch (c)
365                         {
366                         case '&': cc = "&amp;"; break;
367                         case '<': cc = "&lt;"; break;
368                         case '>': cc = "&gt;"; break;
369 #ifdef WINDOWS
370                         case 0x1f: c = '.'; break;
371                         case 0x7f: c = (a == 0x09) ? '%' : '#'; break;
372 #endif
373                         }
374
375                         a = a & 0x0F;
376                         if ((y == 0 && x == 0) || a != old_a) {
377                                 rv = angband_color_table[a][1];
378                                 gv = angband_color_table[a][2];
379                                 bv = angband_color_table[a][3];
380                                 buf_sprintf(screen_buf, "%s<font color=\"#%02x%02x%02x\">", 
381                                             ((y == 0 && x == 0) ? "" : "</font>"), rv, gv, bv);
382                                 old_a = a;
383                         }
384                         if (cc)
385                                 buf_sprintf(screen_buf, "%s", cc);
386                         else
387                                 buf_sprintf(screen_buf, "%c", c);
388                 }
389         }
390         buf_sprintf(screen_buf, "</font>");
391
392         for (i = 0; html_foot[i]; i++)
393                 buf_sprintf(screen_buf, html_foot[i]);
394
395         /* Screen dump size is too big ? */
396         if (screen_buf->size + 1> SCREEN_BUF_SIZE)
397         {
398                 ret = NULL;
399         }
400         else
401         {
402                 /* Terminate string */
403                 buf_append(screen_buf, "", 1);
404
405                 ret = string_make(screen_buf->data);
406         }
407
408         /* Free buffer */
409         buf_delete(screen_buf);
410
411         if (old_use_graphics)
412         {
413                 use_graphics = TRUE;
414                 reset_visuals();
415
416                 /* Redraw everything */
417                 p_ptr->redraw |= (PR_WIPE | PR_BASIC | PR_EXTRA | PR_MAP | PR_EQUIPPY);
418
419                 /* Hack -- update */
420                 handle_stuff();
421         }
422
423         return ret;
424 }
425
426 /*!
427  * @brief スコア転送処理のメインルーチン
428  * @return エラーコード
429  */
430 errr report_score(void)
431 {
432 #ifdef MACINTOSH
433         OSStatus err;
434 #else
435         errr err = 0;
436 #endif
437
438 #ifdef WINDOWS
439         WSADATA wsaData;
440         WORD wVersionRequested =(WORD) (( 1) |  ( 1 << 8));
441 #endif
442
443         BUF *score;
444         int sd;
445         char seikakutmp[128];
446
447         score = buf_new();
448
449 #ifdef JP
450         sprintf(seikakutmp, "%s%s", ap_ptr->title, (ap_ptr->no ? "の" : ""));
451 #else
452         sprintf(seikakutmp, "%s ", ap_ptr->title);
453 #endif
454
455         buf_sprintf(score, "name: %s\n", p_ptr->name);
456 #ifdef JP
457         buf_sprintf(score, "version: 変愚蛮怒 %d.%d.%d\n",
458                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
459 #else
460         buf_sprintf(score, "version: Hengband %d.%d.%d\n",
461                     FAKE_VER_MAJOR-10, FAKE_VER_MINOR, FAKE_VER_PATCH);
462 #endif
463         buf_sprintf(score, "score: %d\n", total_points());
464         buf_sprintf(score, "level: %d\n", p_ptr->lev);
465         buf_sprintf(score, "depth: %d\n", dun_level);
466         buf_sprintf(score, "maxlv: %d\n", p_ptr->max_plv);
467         buf_sprintf(score, "maxdp: %d\n", max_dlv[DUNGEON_ANGBAND]);
468         buf_sprintf(score, "au: %d\n", p_ptr->au);
469         buf_sprintf(score, "turns: %d\n", turn_real(turn));
470         buf_sprintf(score, "sex: %d\n", p_ptr->psex);
471         buf_sprintf(score, "race: %s\n", rp_ptr->title);
472         buf_sprintf(score, "class: %s\n", cp_ptr->title);
473         buf_sprintf(score, "seikaku: %s\n", seikakutmp);
474         buf_sprintf(score, "realm1: %s\n", realm_names[p_ptr->realm1]);
475         buf_sprintf(score, "realm2: %s\n", realm_names[p_ptr->realm2]);
476         buf_sprintf(score, "killer: %s\n", p_ptr->died_from);
477         buf_sprintf(score, "-----charcter dump-----\n");
478
479         make_dump(score);
480
481         if (screen_dump)
482         {
483                 buf_sprintf(score, "-----screen shot-----\n");
484                 buf_append(score, screen_dump, strlen(screen_dump));
485         }
486         
487 #ifdef WINDOWS
488         if (WSAStartup(wVersionRequested, &wsaData))
489         {
490                 msg_print("Report: WSAStartup failed.");
491                 goto report_end;
492         }
493 #endif
494
495 #ifdef MACINTOSH
496 #if TARGET_API_MAC_CARBON
497         err = InitOpenTransportInContext(kInitOTForApplicationMask, NULL);
498 #else
499         err = InitOpenTransport();
500 #endif
501         if (err != noErr)
502         {
503                 msg_print("Report: OpenTransport failed.");
504                 return 1;
505         }
506 #endif
507
508         Term_clear();
509
510         while (1)
511         {
512                 char buff[160];
513 #ifdef JP
514                 prt("接続中...", 0, 0);
515 #else
516                 prt("connecting...", 0, 0);
517 #endif
518                 Term_fresh();
519                 
520                 /* プロキシを設定する */
521                 set_proxy(HTTP_PROXY, HTTP_PROXY_PORT);
522
523                 /* Connect to the score server */
524                 sd = connect_server(HTTP_TIMEOUT, SCORE_SERVER, SCORE_PORT);
525
526
527                 if (!(sd < 0)) break;
528 #ifdef JP
529                 sprintf(buff, "スコア・サーバへの接続に失敗しました。(%s)", soc_err());
530 #else
531                 sprintf(buff, "Failed to connect to the score server.(%s)", soc_err());
532 #endif
533                 prt(buff, 0, 0);
534                 (void)inkey();
535                 
536 #ifdef JP
537                 if (!get_check_strict("もう一度接続を試みますか? ", CHECK_NO_HISTORY))
538 #else
539                 if (!get_check_strict("Try again? ", CHECK_NO_HISTORY))
540 #endif
541                 {
542                         err = 1;
543                         goto report_end;
544                 }
545         }
546 #ifdef JP
547         prt("スコア送信中...", 0, 0);
548 #else
549         prt("Sending the score...", 0, 0);
550 #endif
551         Term_fresh();
552         http_post(sd, SCORE_PATH, score);
553
554         disconnect_server(sd);
555  report_end:
556 #ifdef WINDOWS
557         WSACleanup();
558 #endif
559
560 #ifdef MACINTOSH
561 #if TARGET_API_MAC_CARBON
562         CloseOpenTransportInContext(NULL);
563 #else
564         CloseOpenTransport();
565 #endif
566 #endif
567
568         return err;
569 }
570
571 #endif /* WORLD_SCORE */