57023 Commits

Author SHA1 Message Date
uruk
49e411f557 AVALANCHE: Add Timeout. 2013-06-27 09:21:41 +02:00
uruk
1d950021b8 AVALANCHE: Add Pingo. 2013-06-27 09:06:46 +02:00
uruk
f558eb2e56 AVALANCHE: Add Enid. 2013-06-27 08:35:21 +02:00
uruk
b807337282 AVALANCHE: Add Sequence. 2013-06-26 15:42:05 +02:00
uruk
3e48a4e187 AVALANCHE: Add Celer. 2013-06-26 14:14:01 +02:00
uruk
ca807d74bf AVALANCHE: Add Visa. 2013-06-26 11:04:29 +02:00
uruk
7f1a322de4 AVALANCHE: Repair compilation. 2013-06-25 18:04:52 +02:00
uruk
c39434f37e AVALANCHE: Add Lucerna. 2013-06-25 18:03:46 +02:00
uruk
11efe29da8 AVALANCHE: Add Enhanced. 2013-06-25 13:05:04 +02:00
uruk
a267dc3025 AVALANCHE: Add Logger. 2013-06-24 11:53:16 +02:00
uruk
dc05ec1964 AVALANCHE: Relocate used sources. (Should have happened sooner.) 2013-06-24 11:52:16 +02:00
uruk
c79387608b AVALANCHE: Add Scrolls2. Logger is needed to proceed. 2013-06-24 10:15:42 +02:00
uruk
46849fcc42 AVALANCHE: Start continuously adding parts to Avalot as I proceed with the conversion of the necessary Pascal units. 2013-06-23 21:11:15 +02:00
Strangerke
5750410279 AVALANCHE: Add some detail in debug strings 2013-06-21 18:04:59 +02:00
uruk
178386f1c4 AVALANCHE: Stub gyro2.cpp. Fix readmes. 2013-06-21 15:22:50 +02:00
uruk
aeff42074a AVALANCHE: Reorganise source files. 2013-06-21 14:08:10 +02:00
uruk
1ce5e3bc3f AVALANCHE: Add color.h to replace the color constants from the CRT unit of Pascal. 2013-06-21 13:12:22 +02:00
uruk
6317297b39 AVALANCHE: Implement ROOMNUMS.INC. 2013-06-21 11:53:10 +02:00
uruk
6d35a794cd AVALANCHE: Getting GYRO to compile. 2013-06-21 11:23:11 +02:00
uruk
3946d0ed92 AVALANCHE: Add class Avalot. Cosmetic modifications. 2013-06-20 14:08:58 +02:00
uruk
fa10b10ec7 AVALANCHE: Keep the functions connected to command line arguments and the main menu for later. Minimal cosmetic modifications in the order of the functions. 2013-06-20 12:47:44 +02:00
uruk
a33797b272 AVALANCHE: Partially implement run_avalot(). 2013-06-20 10:58:39 +02:00
uruk
1453413d24 AVALANCHE: Fix detection. 2013-06-20 09:40:25 +02:00
uruk
b2f62278b6 AVALANCHE: Remove some functions from detection. 2013-06-20 08:34:48 +02:00
uruk
b916ab6f02 AVALANCHE: Messing around with GameDescription. 2013-06-20 08:32:58 +02:00
Strangerke
cf80573799 AVALANCHE: Fix compilation 2013-06-19 21:37:06 +02:00
uruk
17ee13f2c1 AVALANCHE: Start stubbing with bootstrp.cpp. 2013-06-19 16:59:12 +02:00
uruk
d2009c014f AVALANCHE: Add detection. Some fix in console.h. 2013-06-18 20:32:43 +02:00
uruk
d53f5d9885 AVALANCHE: Add skeleton. 2013-06-18 17:52:25 +02:00
uruk
2c0e16d6e4 AVALANCHE: Hook the engine into ScummVM. 2013-06-18 12:51:07 +02:00
uruk
f974bccbb0 AVALANCHE: Remove empty lines with only ";" characters in them. 2013-06-18 11:50:18 +02:00
uruk
38bc20a076 AVALANCHE: Use Artistic Style. 2013-06-18 10:23:29 +02:00
uruk
a3025b8dad AVALANCHE: Add namespace. 2013-06-17 15:45:25 +02:00
uruk
7939ab1f62 AVALANCHE: Add standard header. (Now the right one...) 2013-06-17 13:52:44 +02:00
uruk
d33da0a429 Revert "AVALANCHE: Add standard header."
This reverts commit b87de38cc8dc270c272b681b8581decc602ae984.
2013-06-17 13:49:08 +02:00
uruk
a183d560c1 AVALANCHE: Add standard header. 2013-06-17 13:42:47 +02:00
uruk
cc5b8732bb AVALANCHE: Remove #include "ptoc.h" lines from the beginning every .cpp files. 2013-06-17 11:57:27 +02:00
uruk
a2adda516b AVALANCHE: Initial PtoC output. 2013-06-17 10:38:38 +02:00
Torbjörn Andersson
2f0e43bb2e LURE: Fix bad operator in "hotspot" debug command, CID 1004147 2013-06-08 23:27:25 +02:00
Willem Jan Palenstijn
dd003b6a28 COMMON: Add basic documentation for RDFT 2013-06-08 22:03:22 +02:00
Johannes Schickel
bc358b77a8 COMMON: Improve comment in CosineTable::CosineTable.
This commit changes the comment to use the same variable names as we do in the
code. Furthermore, it also makes the comment a bit easier to grasp.
2013-06-08 21:56:48 +02:00
Johannes Schickel
4da5d11e1f COMMON: Try to document the SineTable/CosineTable table entries. 2013-06-08 21:56:48 +02:00
Johannes Schickel
4efc9b152c COMMON: Save memory by allocating only required entries in Cosine-/SineTable.
The tables only contain (2^bitPrecision)/2 entries. The code allocated twice
as many entries previously.
2013-06-08 21:47:52 +02:00
Johannes Schickel
21f87070af COMMON: Fix regression in SineTable creation.
This is a regression from f4ba8a6485b097a8ef1e2004d1af127243f379f1. The
commit replaced the static cosine and sine tables with dynamically created
ones. In the process of that a copy&paste error happened which made the sine
table use the layout of the cosine table. This commit now changes the
dynamically created sine tables to conform to the layout of the previous
static tables.
2013-06-08 21:47:51 +02:00
Johannes Schickel
190ec9c2b6 Merge pull request #336 from madmoose/smacker-8-bit-audio-fix
VIDEO: Wrap 8-bit smacker audio properly
2013-06-08 08:17:51 -07:00
Tobia Tesan
4401f40f72 WINTERMUTE: Prevent warning about duplicate files when autodetecting.
Removed a call to BaseFileManager::registerPackages() in
WintermuteEngine::getGameInfo(), as the constructor for BaseFileManager
already calls registerPackages() once; another call should thus be
superfluous.
2013-06-06 23:34:06 +02:00
Tobia Tesan
4105805505 WINTERMUTE: Fix for unnecessary "WARNING: getChildren() failed for path:"
FSNode::getChildren() was called assuming that it returns 0 iff success.
Actually, it's the other way around.
2013-06-06 23:33:50 +02:00
Alyssa Milburn
ac070ae0c0 MOHAWK: Use addSubDirectoryMatching for LB paths. 2013-06-06 21:41:47 +02:00
Alyssa Milburn
7840b5e4b9 COMMON: Add depth/flat parameters to addSubDirectoryMatching. 2013-06-06 21:41:14 +02:00
Dmitry Smirnov
1d0df53355 BUILD: GNU Hurd & kFreeBSD support
From: Petr Salinger <Petr.Salinger@seznam.cz>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711320
Bug-ScummVM: https://sourceforge.net/tracker/?func=detail&atid=418820&aid=3614268&group_id=37116
2013-06-06 18:51:26 +02:00