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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/*
* sprite_msg.c: メッセージスプライトの処理
*
* Copyright (C) 1997-1998 Masaki Chikama (Wren) <chikama@kasumi.ipl.mech.nagoya-u.ac.jp>
* 1998- <masaki-c@is.aist-nara.ac.jp>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* $Id: sprite_msg.c,v 1.8 2004/10/31 04:18:02 chikama Exp $ */
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "portab.h"
#include "system.h"
#include "ags.h"
#include "nact.h"
#include "input.h"
#include "sact.h"
#include "sprite.h"
#include "drawtext.h"
#include "sactlog.h"
// メッセージキー待ちの時、表示するアニメーションに関する情報
struct markinfo {
sprite_t *sp;
cginfo_t *cg;
int interval;
};
static bool is_messagesprite(int wNum);
static void replacestr_cb(void* data, void* userdata);
static char *replacestr(char *msg);
static void update_mark(sprite_t *sp, cginfo_t *cg);
static int setupmark(int wNum1, int wNum2, struct markinfo *minfo);
static int get_linelen(uint8_t *msg);
static uint8_t *get_char(uint8_t *msg, char *mbuf, char *rbuf, int bufmax);
static void append_to_log(char *msg);
static void sactlog_newline();
static void set_align(char *msg, sprite_t *sp, int wSize, int wAlign);
// 文字列置き換え用 (表示時にon-the-flyで変換して表示)
#define REPLACEBUFSIZE MSGBUFMAX+100
static char repbuf[2][REPLACEBUFSIZE];
static char *replacesrc;
static char *replacedst;
// 指定の番号のスプライトがメッセージスプライトかどうかをチェック
static bool is_messagesprite(int wNum) {
// check sprite number is sane
if (wNum >= (SPRITEMAX -1) || wNum <= 0) return false;
// check sprite is set
if (sact.sp[wNum] == NULL) return false;
// check sprite is message sprite
if (sact.sp[wNum]->type != SPRITE_MSG) return false;
return true;
}
// 文字列の置き換え処理
static void replacestr_cb(void* data, void* userdata) {
strexchange_t *ex = (strexchange_t *)data;
char *start, *next, *out;
if (ex == NULL) return;
start = replacesrc;
out = replacedst;
while (true) {
next = strstr(start, ex->src);
if (next == NULL) break;
strncat(out, start, (size_t)(next - start));
strncat(out, ex->dst, max(0, (REPLACEBUFSIZE - (int)strlen(out))));
start = next + strlen(ex->src);
}
strncat(out, start, max(0, REPLACEBUFSIZE - (int)strlen(out)));
replacedst = replacesrc;
replacesrc = out;
replacedst[0] = '\0';
}
// 文字列の置き換え
static char *replacestr(char *msg) {
if (sact.strreplace == NULL) return msg;
repbuf[0][0] = '\0';
repbuf[1][0] = '\0';
strncpy(repbuf[0], msg, REPLACEBUFSIZE);
replacesrc = repbuf[0];
replacedst = repbuf[1];
slist_foreach(sact.strreplace, replacestr_cb, NULL);
return (repbuf[0][0] == '\0') ? repbuf[1] : repbuf[0];
}
// アニメパターンの描画
static void update_mark(sprite_t *sp, cginfo_t *cg) {
bool show = sp->show;
cginfo_t *curcg = sp->curcg;
sp->show = true;
sp->curcg = cg;
sp_updateme(sp);
sp_update_clipped();
sp->show = show;
sp->curcg = curcg;
}
// アニメパターンの初期化
static int setupmark(int wNum1, int wNum2, struct markinfo *minfo) {
sprite_t *sp1, *sp2;
int i = 0;
if (wNum1 == 0 || wNum2 == 0) return 0;
sp1 = sact.sp[wNum1];
sp2 = sact.sp[wNum2];
if (sp1 == NULL || sp2 == NULL) return 0;
if (sp1->cg1) {
minfo[i].sp = sp1;
minfo[i].cg = sp1->cg1;
minfo[i].interval = sp1->u.anime.interval;
i++;
}
if (sp1->cg2) {
minfo[i].sp = sp1;
minfo[i].cg = sp1->cg2;
minfo[i].interval = sp1->u.anime.interval;
i++;
}
if (sp1->cg3) {
minfo[i].sp = sp1;
minfo[i].cg = sp1->cg3;
minfo[i].interval = sp1->u.anime.interval;
i++;
}
if (sp2->cg1) {
minfo[i].sp = sp2;
minfo[i].cg = sp2->cg1;
minfo[i].interval = sp2->u.anime.interval;
i++;
}
if (sp2->cg2) {
minfo[i].sp = sp2;
minfo[i].cg = sp2->cg2;
minfo[i].interval = sp2->u.anime.interval;
i++;
}
if (sp2->cg3) {
minfo[i].sp = sp2;
minfo[i].cg = sp2->cg3;
minfo[i].interval = sp2->u.anime.interval;
i++;
}
return i;
}
/*
メッセージをバッファに追加
nact.cのメッセージ・コマンド解析ルーチンから呼ばれる
@param msg: 追加する文字列
*/
void smsg_add(const char *msg) {
int len;
if (msg[0] == '\0') return;
len = MSGBUFMAX - (int)strlen(sact.msgbuf);
if (len < 0) {
WARNING("buf shortage (%d)", len);
return;
}
strncat(sact.msgbuf, msg, len);
sact.msgbuf[MSGBUFMAX -1] = '\0';
}
/*
改行
改行はメッセージ情報内につっこみ、出力時に改行幅を取り出して改行
@param wNum: 改行するスプライト番号
@param size: 改行幅
*/
void smsg_newline(int wNum, int size) {
uint8_t buf[3];
if (!is_messagesprite(wNum)) return;
buf[0] = '\n';
buf[1] = size;
buf[2] = '\0';
smsg_add(buf);
}
/*
(ルビつき)メッセージの出力
@param wSpriteNumber: メッセージを表示するメッセージスプライト番号
@param wSize: フォントの大きさ
@param wColorR: メッセージの色(Red)
@param wColorG: メッセージの色(Green)
@param wColorB: メッセージの色(Blue)
@param wFont: メッセージのフォント(0:ゴシック, 1:明朝)
@param wSpeed: メッセージの表示速度 (msec)
@param wLineSpace: 行間スペース
@param wAlign: 行そろえ
@param wRSize: ルビフォントサイズ
@param wRFont: ルビフォント
@param wRLineSpace: ルビと本文の文字間隔
@param vLength: ???
*/
void smsg_out(int wNum, int wSize, int wColorR, int wColorG, int wColorB, int wFont, int wSpeed, int wLineSpace, int wAlign, int wRSize, int wRFont, int wRLineSpace, int *wLength) {
char *msg;
sprite_t *sp;
int len = 0; // 処理した文字数?
bool needupdate = false;
SDL_Rect uparea = {0,0,0,0};
// wRSize == 0 -> ルビ無し(SACT.MessageOutputからの呼出)
if (sact.msgbuf[0] == '\0') return;
if (!is_messagesprite(wNum)) return;
// MessageSkip中は文字送り速度を最大に
if (sact.waitskiplv > 1) wSpeed = 0;
// shortcut
sp = sact.sp[wNum];
// update開始Y座標 (X座標は0固定)
uparea.y = sp->u.msg.dspcur.y;
// 文字列置換
msg = replacestr(sact.msgbuf);
// 文字アラインメントの調整
set_align(msg, sp, wSize, wAlign);
while (*msg) {
char mbuf[20], rbuf[20];
int cw, delta, wcnt;
wcnt = sys_get_ticks();
mbuf[0] = rbuf[0] = '\0';
msg = get_char(msg, mbuf, rbuf, sizeof(mbuf) -1);
if (mbuf[0] == '\n') {
sp->u.msg.dspcur.x = 0;
sp->u.msg.dspcur.y += (mbuf[1] + wLineSpace + wRSize + wRLineSpace);
set_align(msg, sp, wSize, wAlign);
sactlog_newline();
continue;
}
if (rbuf[0] != '\0') {
int mlen = strlen(mbuf) * wSize /2;
int rlen = strlen(rbuf) * wRSize /2;
int adjx = max(0, (mlen - rlen) /2);
dt_setfont(wRFont, wRSize);
dt_drawtext_col(sp->u.msg.canvas,
sp->u.msg.dspcur.x + adjx,
sp->u.msg.dspcur.y,
rbuf,
wColorR, wColorG, wColorB);
}
dt_setfont(wFont, wSize);
cw = dt_drawtext_col(sp->u.msg.canvas,
sp->u.msg.dspcur.x,
sp->u.msg.dspcur.y + wRSize + wRLineSpace,
mbuf,
wColorR, wColorG, wColorB);
needupdate = true;
append_to_log(mbuf);
if (wSpeed > 0) {
sp_updateme_part(sp,
sp->u.msg.dspcur.x,
sp->u.msg.dspcur.y,
cw,
wSize + wRSize + wRLineSpace);
sp_update_clipped();
needupdate = false;
// keywait
delta = sys_get_ticks() - wcnt;
if (delta < wSpeed) {
if (sys_keywait(wSpeed - delta, KEYWAIT_NONCANCELABLE)) {
wSpeed = 0;
}
}
}
sp->u.msg.dspcur.x += cw;
}
sactlog_newline();
// バッファリング中の文字のクリア
sact.msgbuf[0] = '\0';
// Waitなしの出力は最後にupdate
if (needupdate) {
uparea.w = sp->width;
uparea.h = min(sp->height, uparea.y - sp->u.msg.dspcur.y + wLineSpace + wLineSpace + wRSize);
sp_updateme_part(sp, uparea.x, uparea.y, uparea.w, uparea.h);
}
// ????
if (wLength) {
*wLength = len;
}
}
/*
メッセージ領域のクリア
@param wNum: クリアするスプライト番号
*/
void smsg_clear(int wNum) {
if (!is_messagesprite(wNum)) return;
// 表示位置の初期化
sprite_t *sp = sact.sp[wNum];
sp->u.msg.dspcur.x = 0;
sp->u.msg.dspcur.y = 0;
sact.msgbuf[0] = '\0';
sact.msgbuf2[0] = '\0';
// Clear the canvas
SDL_FillRect(sp->u.msg.canvas, NULL, 0);
sp_updateme(sp);
if (sact.logging) {
sact.log = list_append(sact.log, strdup("\n"));
}
}
/*
出力中の文字列があるかチェック
@return: なし(1) , あり(0)
*/
bool smsg_is_empty() {
return (sact.msgbuf[0] == '\0');
}
int smsg_peek(int nTopStringNum) {
char *p = sact.msgbuf;
int i;
for (i = 0; *p; i++) {
char *q = strchr(p, '\n');
if (q)
*q = '\0';
svar_set(nTopStringNum + i, p);
if (q) {
*q = '\n';
p = q + 2;
} else {
i++;
break;
}
}
return i;
}
/*
メッセージキー入力待ち
@param wNum1: スプライト番号1(アニメーションスプライト)
@param wNum2: スプライト番号2(アニメーションスプライト)
@param msglen: ?
*/
int smsg_keywait(int wNum1, int wNum2, int msglen) {
struct markinfo minfo[6];
int i = 0, j, maxstep;
if (sact.waitskiplv > 0) {
sys_getInputInfo();
return 0;
}
// アニメパターンの初期化
maxstep = setupmark(wNum1, wNum2, minfo);
sact.waittype = KEYWAIT_MESSAGE;
sact.waitkey = -1;
while (sact.waitkey == -1 && !nact->is_quit) {
int st = sys_get_ticks();
int interval = 25;
// アニメパターンがある場合、その更新
// Zキーで隠されているとは表示しない
// (アニメパターンが隠す対象でない時はどうしよう...)
if (maxstep &&
!sact.zhiding &&
sact.waittype != KEYWAIT_BACKLOG) {
j = i % maxstep;
interval = minfo[j].interval;
update_mark(minfo[j].sp, minfo[j].cg);
i++;
}
sys_keywait(interval - (sys_get_ticks() - st), KEYWAIT_NONCANCELABLE);
}
sact.waittype = KEYWAIT_NONE;
return sact.waitkey;
}
/*
スプライト再描画のコールバック
@param sp: 再描画するスプライト
*/
void smsg_update(sprite_t *sp) {
SDL_Rect sp_rect = {0, 0, sp->width, sp->height};
int sx = 0;
int sy = 0;
int dx = sp->cur.x;
int dy = sp->cur.y;
int w = sp->width;
int h = sp->height;
if (!ags_clipCopyRect(&sp_rect, &sact.updaterect, &sx, &sy, &dx, &dy, &w, &h)) {
return;
}
SDL_SetSurfaceBlendMode(sp->u.msg.canvas, SDL_BLENDMODE_BLEND);
SDL_SetSurfaceAlphaMod(sp->u.msg.canvas, sp->blendrate);
SDL_BlitSurface(sp->u.msg.canvas, &(SDL_Rect){sx, sy, w, h}, main_surface, &(SDL_Rect){dx, dy, w, h});
SACT_DEBUG("do update no=%d, sx=%d, sy=%d, w=%d, h=%d, dx=%d, dy=%d",
sp->no, sx, sy, w, h, dx, dy);
}
// 改行を含む文字列バッファ中から、改行までの文字列の長さを取り出す
static int get_linelen(uint8_t *msg) {
int c = 0;
while (*msg) {
if (*msg == '\n') break;
if (0 == strncmp("|RB|", msg, 4)) {
msg += 4;
while (*msg != '|') {
msg++; c++;
}
msg++;
while (*msg != '|') {
msg++;
}
msg++;
} else {
msg++; c++;
}
}
return c;
}
// 改行やルビを含む文字列バッファからそれらを取り出す
// 改行の場合 : 改行幅もいっしょに
// ルビつき文字の場合: メッセージ本体と対応するルビ文字列
// それ以外 : 全角|半角文字1文字
static uint8_t *get_char(uint8_t *msg, char *mbuf, char *rbuf, int bufmax) {
if (msg[0] == '\n') {
mbuf[0] = '\n';
mbuf[1] = msg[1];
mbuf[2] = '\0';
return msg +2;
}
// ルビつき文字
if (0 == strncmp("|RB|", msg, 4)) {
int i;
msg += 4;
for (i = 0; *msg != '|' && i < bufmax; i++) {
mbuf[i] = *msg++;
}
msg++; mbuf[i] = '\0';
for (i = 0; *msg != '|' && i < bufmax; i++) {
rbuf[i] = *msg++;
}
msg++; rbuf[i] = '\0';
} else {
uint8_t *p = advance_char(msg, nact->encoding);
while (msg < p)
*mbuf++ = *msg++;
*mbuf = '\0';
}
return msg;
}
// バックログ用バッファに追加
static void append_to_log(char *msg) {
if (sact.logging) {
int len = MSGBUFMAX - (int)strlen(sact.msgbuf2);
strncat(sact.msgbuf2, msg, len);
sact.msgbuf2[MSGBUFMAX -1] = '\0';
}
}
// バックログを保存するリストに追加
static void sactlog_newline() {
if (sact.logging) {
if (sact.msgbuf2[0] == '\0') return;
sact.log = list_append(sact.log, toUTF8(sact.msgbuf2));
sact.msgbuf2[0] = '\0';
}
}
// 書き出し位置がx=0の時のみアラインメントの調整を行う
static void set_align(char *msg, sprite_t *sp, int wSize, int wAlign) {
if (sp->u.msg.dspcur.x == 0) {
int mlen = get_linelen(msg) * wSize/2;
int adjx = 0;
switch (wAlign) {
case 1: // センタリング
adjx = (sp->width - mlen) / 2;
break;
case 2: // 右寄せ
adjx = (sp->width - mlen);
break;
}
sp->u.msg.dspcur.x = max(0, adjx);
}
}
|