Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-20 | SWORD25: Added description field to savegames | Paul Gilbert | |
This stores the date and time of when the game was saved, since ScummVM doesn't support getting a file's age like the original engine did. svn-id: r53638 | |||
2010-10-20 | SWORD25: Fix to correctly write game state to savegame files | Paul Gilbert | |
svn-id: r53637 | |||
2010-10-19 | SWORD25: Enforced code formatting rules in rest of the engine | Eugene Sandulenko | |
svn-id: r53626 | |||
2010-10-19 | SWORD25: Fix engine exit when running without theoradec | Eugene Sandulenko | |
svn-id: r53622 | |||
2010-10-19 | SWORD25: Simplify log listener code (and get rid of another global constructor) | Max Horn | |
svn-id: r53610 | |||
2010-10-19 | SWORD25: Some code cleanup | Max Horn | |
svn-id: r53608 | |||
2010-10-19 | SWORD25: Move BS_ServiceInfo to service_ids.h and turn it into a POD struct | Max Horn | |
svn-id: r53607 | |||
2010-10-19 | SWORD25: Optimize ReverseArray, move it to only place it is used | Max Horn | |
svn-id: r53606 | |||
2010-10-19 | SWORD25: Fix cppcheck warnings in BS_Log::LogPrefix | Paul Gilbert | |
The LogPrefix method isn't currently used, but I'm fixing it just in case it's ever used again svn-id: r53602 | |||
2010-10-15 | SWORD25: Fix infinite recursion | Torbjörn Andersson | |
If I understand this, we don't need to call Kernel::GetInstance() when we are already in the Kernel class. In this particular case, _RegisterScriptBindings() is called from the Kernel constructor, so it gets called again and again because _Instance hasn't yet been set. svn-id: r53512 | |||
2010-10-15 | SWORD25: Do not use Kernel::GetService directly anymore | Max Horn | |
svn-id: r53477 | |||
2010-10-13 | SWORD25: Semi-colon cleanup. | Johannes Schickel | |
svn-id: r53446 | |||
2010-10-13 | SWORD25: Check if _LogFile has been created before flushing. | Torbjörn Andersson | |
svn-id: r53445 | |||
2010-10-13 | Fixed ifdef. I'm too tired today :/ | Filippos Karapetis | |
svn-id: r53440 | |||
2010-10-13 | SWORD25: Hopefully fix compilation when libtheora is not present | Filippos Karapetis | |
svn-id: r53439 | |||
2010-10-13 | SWORD25: Renamed getInstance() -> instance() | Max Horn | |
svn-id: r53430 | |||
2010-10-13 | SWORD25: Don't even compile theora related code when that lib is not present | Max Horn | |
svn-id: r53428 | |||
2010-10-13 | SWORD25: Renamed ENABLE_THEORADEC to USE_THEORADEC (like in configure) | Filippos Karapetis | |
svn-id: r53418 | |||
2010-10-13 | SWORD25: Renamed ENABLE_THEORA to ENABLE_THEORADEC (like in configure) | Filippos Karapetis | |
svn-id: r53417 | |||
2010-10-13 | SWORD25: Added a ENABLE_THEORA define inside fmv/theora_decoder.h | Filippos Karapetis | |
This define can be used to disable building of the Theora decoder, and thus makes libtheora optional (therefore resolving an item in the Sword25 TODO). Disabling the Theora decoder will effectively disable the game's videos Note that running the game with the Theora decoder disabled is still untested svn-id: r53416 | |||
2010-10-13 | SWORD25: Force cast to uint instead of unsigned long long | Sven Hesse | |
As per Fingolfin's request, because apparently there's no long long in the C++ standard; and ScummVM's hashmap needs uint. svn-id: r53413 | |||
2010-10-13 | SWORD25: Resolve ambigous write() call on 64 bit systems | Sven Hesse | |
svn-id: r53410 | |||
2010-10-13 | SWORD25: Cast the pointer to unsigned long long | Sven Hesse | |
...Instead of to uint, which fails on my 64 bit system where pointers are 64 bit, but normal ints 32 bit wide. svn-id: r53409 | |||
2010-10-13 | SWORD25: Fixed signed/unsigned bug | Filippos Karapetis | |
svn-id: r53407 | |||
2010-10-13 | SWORD25: Get rid of kernel/bs_stdint.h | Max Horn | |
svn-id: r53405 | |||
2010-10-13 | SWORD25: Get rid of Kernel::GetMicroTicks() | Max Horn | |
svn-id: r53403 | |||
2010-10-13 | SWORD25: Enforced code naming conventions in math/* | Eugene Sandulenko | |
svn-id: r53392 | |||
2010-10-13 | SWORD25: Enforced code naming conventions in script/* | Eugene Sandulenko | |
svn-id: r53391 | |||
2010-10-13 | SWORD25: Enforced code naming conventions in sfx/ and reservice.h | Eugene Sandulenko | |
svn-id: r53390 | |||
2010-10-13 | SWORD25: Enforse code naming conventions in PackageManager and Sword25Engine | Eugene Sandulenko | |
svn-id: r53380 | |||
2010-10-13 | SWORD25: Return proper path separator | Eugene Sandulenko | |
svn-id: r53379 | |||
2010-10-13 | SWORD25: Remove redundant code | Eugene Sandulenko | |
svn-id: r53378 | |||
2010-10-12 | SWORD25: Further savegame work, including savegame screenshots | Paul Gilbert | |
This handles saving (but not yet re-loaded display) of screenshots into savegame files. It also changes the original engine behaviour of temporarily saving the screenshots in a file 'tmp.png' to keeping the raw PNG file data in a memory block. svn-id: r53373 | |||
2010-10-12 | SWORD25: Fix warning | Eugene Sandulenko | |
svn-id: r53368 | |||
2010-10-12 | SWORD25: Got rid of FMODExSound class | Eugene Sandulenko | |
svn-id: r53364 | |||
2010-10-12 | SWORD25: Got rid of OpenGLGfx class | Eugene Sandulenko | |
svn-id: r53356 | |||
2010-10-12 | SWORD25: Get rid of ScummVMInput class | Eugene Sandulenko | |
svn-id: r53354 | |||
2010-10-12 | SWORD25: Got rid of ScummVMPackageManager | Eugene Sandulenko | |
svn-id: r53353 | |||
2010-10-12 | SWORD25: Fixes to the savegame saving code | Paul Gilbert | |
svn-id: r53351 | |||
2010-10-12 | SWORD25: Fix to array reversal, fixing path-finding | Paul Gilbert | |
svn-id: r53349 | |||
2010-10-12 | SWORD25: Fix for path-finding | Paul Gilbert | |
svn-id: r53348 | |||
2010-10-12 | SWORD25: Comply to the code conventions for several classes | Eugene Sandulenko | |
svn-id: r53310 | |||
2010-10-12 | SWORD25: unsigned int -> uint | Eugene Sandulenko | |
svn-id: r53309 | |||
2010-10-12 | SWORD25: unsigned char -> byte | Eugene Sandulenko | |
svn-id: r53308 | |||
2010-10-12 | SWORD25: Changed save path missing message to an error() call | Paul Gilbert | |
svn-id: r53283 | |||
2010-10-12 | SWORD25: Bugfix so that EVENT_QUIT quits the game | Paul Gilbert | |
svn-id: r53280 | |||
2010-10-12 | SWORD25: Fix early engine quit. Now it runs, hurray! | Eugene Sandulenko | |
svn-id: r53268 | |||
2010-10-12 | SWORD25: Removed now redundant 'using namespace std' lines | Paul Gilbert | |
svn-id: r53263 | |||
2010-10-12 | SWORD25: removed BS_ prefix from rest of the classes. | Eugene Sandulenko | |
The things which are intentionally left with the prefix: BS_LOG, BS_ASSERT, BS_Rect, BS_String. svn-id: r53261 | |||
2010-10-12 | SWORD25: eliminated BS_ prefix in all but kernel/ | Eugene Sandulenko | |
svn-id: r53259 |