aboutsummaryrefslogtreecommitdiff
path: root/sky/autoroute.h
diff options
context:
space:
mode:
authorRobert Göffringmann2003-04-27 15:02:52 +0000
committerRobert Göffringmann2003-04-27 15:02:52 +0000
commitc27e22d048fcce533fcff5c3e8081e2e9726ca6f (patch)
tree16c371954adedc8c21414158dd87c752fa9c8686 /sky/autoroute.h
parentd9c87511686880f2dcba29b53a7944ddc0e8ea64 (diff)
downloadscummvm-rg350-c27e22d048fcce533fcff5c3e8081e2e9726ca6f.tar.gz
scummvm-rg350-c27e22d048fcce533fcff5c3e8081e2e9726ca6f.tar.bz2
scummvm-rg350-c27e22d048fcce533fcff5c3e8081e2e9726ca6f.zip
The autoroute stuff (completely untested)
svn-id: r7154
Diffstat (limited to 'sky/autoroute.h')
-rw-r--r--sky/autoroute.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/sky/autoroute.h b/sky/autoroute.h
new file mode 100644
index 0000000000..9a3936bf78
--- /dev/null
+++ b/sky/autoroute.h
@@ -0,0 +1,43 @@
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2003 The ScummVM project
+ * Copyright (C) 2003 Robert "LavosSpawn" Goeffringmann
+ *
+ * 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.
+ *
+ * $Header$
+ *
+ */
+
+#ifndef __AutoRoute__
+#define __AutoRoute__
+
+#include "stdafx.h"
+#include "struc.h"
+#include "compact.h"
+#include "grid.h"
+#include "skydefs.h"
+
+class SkyAutoRoute {
+public:
+ SkyAutoRoute(SkyGrid *pGrid);
+ ~SkyAutoRoute(void);
+ uint16 autoRoute(Compact *cpt);
+private:
+ uint16 checkBlock(uint16 *blockPos);
+ SkyGrid *_grid;
+ uint16 *_routeGrid;
+};
+
+#endif // __AutoRoute \ No newline at end of file