Mercurial > otakunoraifu
view scn2k/scn2k.h @ 55:f1a27ee7e03c
* started the same changes on scn2k_text.cc
* handle opcodes childObj*. In fact, it was handled (in a strange way, but it worked) before the previous changeset
author | thib |
---|---|
date | Wed, 22 Apr 2009 15:01:42 +0000 |
parents | d7cde171a1de |
children | c7bcc0ec2267 |
line wrap: on
line source
/* * Copyright (c) 2004-2006 Kazunori "jagarl" Ueno * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef __SCN2k_H__ #define __SCN2k_H__ #include <vector> #include <string> #include <map> #include <set> /* namespace Widget { class Text; class Button; class TextButton; class Label; class Dialog; class AnmTime; } */ class WidText; class WidButton; class WidTextButton; class WidLabel; class WidDialog; class WidAnmTime; namespace Event { class Container; } class PicBase; class PicContainer; class AyuSysConfig; class Surface; void dprintf(const char* fmt, ...); void eprintf(const char* fmt, ...); struct VarInfo { #define TYPE_NONSYSVARMAX 5 #define TYPE_VARMAX 9 #define TYPE_VARLOCSTR 10 #define TYPE_VARSYSSTR 12 #define TYPE_VARSTR 18 #define TYPE_STR 58 #define TYPE_VAL 68 #define TYPE_SYS 0xc8 #define TYPE_END 0x7f #define TYPE_SYS_SYS 0 #define TYPE_SYS_SKIPMODE 1 int type; int number; int value; VarInfo() { type = TYPE_VAL; value = 0;} VarInfo(int n) { type = TYPE_VAL; value = n;} VarInfo(const VarInfo& i) { type = i.type; number = i.number; value = i.value;} }; class Flags { /* flag: ** type 0-5 : ローカル整数、各2000個 ** type 6, 25 : グローバル整数、2000個 ** type 10,11: ローカル整数??、各2000個 ** type 12 : グローバル文字列、2000個 (今は無視しても良いが) ** type 18 : ローカル文字列、2000個 ** type 25: システム変数(マウス座標など?) 1000 個? ** type 26-32, 51 : 1-bit access to 0-6, 25 ** type 52-58, 77 : 2-bit access to 0-6, 25 ** type 78-84, 103 : 4-bit access to 0-6, 25 ** type 104-110, 129 : 8-bit access to 0-6, 25 */ private: typedef unsigned int uint; int sys; int var[TYPE_VARMAX+1][2000]; std::string str[2000]; std::string sys_str[2000]; std::string loc_str[3]; public: Flags(void); int operator () () const; int operator () (VarInfo info) const; void Str(int type, unsigned int number, char* buf, int sz) const; std::string Str(int type, unsigned int number) const; std::set<int> cgm_data; bool IsInt(int type) const; int MaxIndex(int type) const; void Set(VarInfo info, int value); int Get(int type, int number) const; void SetSys(int value); void SetStr(VarInfo info, std::string val); bool Exec(class Cmd& cmd); void Save(std::string& str); void Load(const char* str); void SaveSys(std::string& str); void LoadSys(const char* str); }; /* commands */ #define STRHEAP_SIZE 10000 enum Cmdtype { CMD_NOP, CMD_FLAGS, CMD_JMP, CMD_TEXT, CMD_OTHER, CMD_SYSVAR, CMD_TEXTEND, CMD_SAVECMDGRP, CMD_SAVECMDGRP_START, CMD_SAVECMDGRP_ONCE, CMD_SAVECMD_ONCE, CMD_WAITFRAMEUPDATE,CMD_SAVEPOINT, CMD_ROLLBACKPOINT, CMD_SAVEREQ, CMD_SAVE, CMD_LOADREQ, CMD_LOAD, CMD_MENUREQ, CMD_BACKLOGREQ, CMD_BACKLOGREQ_FWD, CMD_END}; struct CmdSimplified { // Cmd 保存用 int type, cmd1, cmd2, cmd3, cmd4, argc; char* args; void Save(std::string& save); void Load(const char* save, char*& args_buffer); void copy(const CmdSimplified& from, char*& args_buffer); }; class SimpleCmd { public: SimpleCmd(int a, int b, int c); SimpleCmd(); bool operator==(const SimpleCmd& cmd) const; bool operator<(const SimpleCmd& cmd) const; public: int cmd1, cmd2, cmd3; }; class Cmd : public SimpleCmd{ public: Cmdtype cmd_type; int cmd4; int argc; int pos, scn; const char* rawdata; char cmdstr[1024]; std::vector<VarInfo> args; private: const Flags& flags; bool errorflag; int system_version; int GetArgs(const char*& d); int GetArgsSpecial(int normal_args,const char*& d); void GetSelection(const char*& d); int GetSwitch(const char*& d); int GetSimpleSwitch(const char*& d); int GetExpression(const char*& d, struct VarInfo* info = 0); int GetExpressionCond(const char*& d); int GetLeftToken(const char*& d, struct VarInfo& info); int GetString(const char*& d); int CopyString(const char* d); int StrVar(int type, int number); static char strtype[256]; static int StrType(const char* d) { return strtype[*(unsigned const char*)d];} public: const char* Str(const VarInfo& info) const; int AddStr(char* s); private: char strheap[STRHEAP_SIZE]; int strend; void SetError(void) { errorflag = true;} void ResetString(void) { strend = 0; } public: void GetCmd(Flags& f, const char*& d); void SetSysvar(int n, int v); void SetSysvar(int v) { SetSysvar(TYPE_SYS_SYS, v); } void SetFlagvar(VarInfo info, int v); void SetStrvar(VarInfo info, const std::string& s); bool IsError() { return errorflag;} void clear(void); virtual const char * CmdDescr(int, int, int, int) { return "Not supported"; } Cmd(const Flags& f, int _sys_ver); void read(const CmdSimplified& cmd); void write(CmdSimplified& cmd, char*& args_buffer) const; }; class CommandHandler { public: typedef void (CommandHandler::*CmdImpl)(Cmd& cmd); typedef struct { const char* descr; CmdImpl function; } CommandInfo; void RegisterCommand(int cmd1, int cmd2, int cmd3, const char* descr, CmdImpl func); bool Exec(Cmd& cmd); void PrintCmd(Cmd& cmd); private: typedef std::map<SimpleCmd, CommandInfo> CommandMap; CommandMap command_map; }; enum SkipMode { SKIP_NO=0, SKIP_TEXT=1, SKIP_GRP_FAST=16, SKIP_GRP_NOEFFEC=32, SKIP_GRP_NODRAW=64, SKIPEND_TEXT=256, SKIPEND_KEY=512, SKIP_IN_MENU=1024 }; #include "font/text.h" struct BacklogItem { enum {SaveSelect = -2}; int scn, pos; int koe; std::string face; struct TextStream text; BacklogItem(void); void Clear(void); void AddTextPos(Cmd&); void DeleteTextPos(); void SetSavepos(int pos); BacklogItem& operator =(const BacklogItem&); }; class Text { private: class TextImpl* pimpl; public: std::vector<BacklogItem> backlog; BacklogItem backlog_item; Text(Event::Container& _event, PicContainer& _parent); ~Text(); void InitWindow(void); void Exec(Cmd& cmd); bool Wait(unsigned int current_time, Cmd& cmd); void SetSkipMode(SkipMode mode); void hide(void); void show(void); void show(int num); void Save(std::string& str, bool rollback_save); void Load(const char* str); void DrawBacklog(BacklogItem& item, Cmd& cmd); }; #include "../window/rect.h" class Grp { private: class GrpImpl* pimpl; public: Grp(Event::Container& _event, PicContainer& _parent, const Flags& f, std::set<int>& _cgm_data); ~Grp(); bool Wait(unsigned int current_time, Cmd& cmd); void Exec(Cmd& cmd); void SetSkipMode(SkipMode mode); void InitSel(void); void Save(std::string& str); void Load(const char* str); void SaveSys(std::string& str); void LoadSys(const char* str); }; void dprintf(const char* fmt, ...); // debug 用 void eprintf(const char* fmt, ...); // コマンド実行(XXXexec)追跡用 #endif