aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/AdTalkDef.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-03-06 04:34:46 +0100
committerEinar Johan Trøan Sømåen2012-06-02 12:12:29 +0200
commit2b586a768f7ef486f64b36a93993809beea184f7 (patch)
tree7c31af683f4ca3396194c3ec295d385fb45a4275 /engines/wintermute/AdTalkDef.h
parent5a2cf6f36ff5f8a75b1e34b00bd5444619eb4615 (diff)
downloadscummvm-rg350-2b586a768f7ef486f64b36a93993809beea184f7.tar.gz
scummvm-rg350-2b586a768f7ef486f64b36a93993809beea184f7.tar.bz2
scummvm-rg350-2b586a768f7ef486f64b36a93993809beea184f7.zip
WINTERMUTE: Add the AD-classfiles
Diffstat (limited to 'engines/wintermute/AdTalkDef.h')
-rw-r--r--engines/wintermute/AdTalkDef.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/engines/wintermute/AdTalkDef.h b/engines/wintermute/AdTalkDef.h
new file mode 100644
index 0000000000..4702a10fd6
--- /dev/null
+++ b/engines/wintermute/AdTalkDef.h
@@ -0,0 +1,58 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+/*
+ * This file is based on WME Lite.
+ * http://dead-code.org/redir.php?target=wmelite
+ * Copyright (c) 2011 Jan Nedoma
+ */
+
+#ifndef __WmeAdTalkDef_H__
+#define __WmeAdTalkDef_H__
+
+#include "coll_templ.h"
+#include "BObject.h"
+
+namespace WinterMute {
+class CAdTalkNode;
+class CAdSpriteSet;
+class CAdTalkDef : public CBObject {
+public:
+ char *m_DefaultSpriteSetFilename;
+ CAdSpriteSet *m_DefaultSpriteSet;
+ CBSprite *GetDefaultSprite(TDirection Dir);
+ HRESULT LoadDefaultSprite();
+ DECLARE_PERSISTENT(CAdTalkDef, CBObject)
+
+ CAdTalkDef(CBGame *inGame);
+ virtual ~CAdTalkDef();
+ HRESULT LoadFile(const char *Filename);
+ HRESULT LoadBuffer(byte *Buffer, bool Complete = true);
+ CBArray<CAdTalkNode *, CAdTalkNode *> m_Nodes;
+ char *m_DefaultSpriteFilename;
+ CBSprite *m_DefaultSprite;
+ virtual HRESULT SaveAsText(CBDynBuffer *Buffer, int Indent = 0);
+};
+
+} // end of namespace WinterMute
+
+#endif