aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/AdPathPoint.cpp
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/AdPathPoint.cpp
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/AdPathPoint.cpp')
-rw-r--r--engines/wintermute/AdPathPoint.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/engines/wintermute/AdPathPoint.cpp b/engines/wintermute/AdPathPoint.cpp
new file mode 100644
index 0000000000..3bffcd4c73
--- /dev/null
+++ b/engines/wintermute/AdPathPoint.cpp
@@ -0,0 +1,75 @@
+/* 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
+ */
+
+#include "AdPathPoint.h"
+#include "BPersistMgr.h"
+
+namespace WinterMute {
+
+IMPLEMENT_PERSISTENT(CAdPathPoint, false)
+
+//////////////////////////////////////////////////////////////////////////
+CAdPathPoint::CAdPathPoint() {
+ x = y = 0;
+ m_Distance = 0;
+
+ m_Marked = false;
+ m_Origin = NULL;
+}
+
+
+//////////////////////////////////////////////////////////////////////////
+CAdPathPoint::CAdPathPoint(int initX, int initY, int initDistance) {
+ x = initX;
+ y = initY;
+ m_Distance = initDistance;
+
+ m_Marked = false;
+ m_Origin = NULL;
+}
+
+
+//////////////////////////////////////////////////////////////////////////
+CAdPathPoint::~CAdPathPoint() {
+ m_Origin = NULL;
+}
+
+
+//////////////////////////////////////////////////////////////////////////
+HRESULT CAdPathPoint::Persist(CBPersistMgr *PersistMgr) {
+
+ CBPoint::Persist(PersistMgr);
+
+ PersistMgr->Transfer(TMEMBER(m_Distance));
+ PersistMgr->Transfer(TMEMBER(m_Marked));
+ PersistMgr->Transfer(TMEMBER(m_Origin));
+
+ return S_OK;
+}
+
+} // end of namespace WinterMute