aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-22SUPERNOVA: Adds methods for alterting Object stateJoseph-Eugene Winzer
2018-01-22SUPERNOVA: RefactoringJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Removes ORing ObjectTypes from msn_def.hJoseph-Eugene Winzer
The reason for the removal is because of gcc warnings when the operator is not used in a translation unit that includes msn_def.h. Currently I also see it used in the game logic anyway so there's no need for it to be defined in a ubiquitiously used header file like msn_def.h
2018-01-22SUPERNOVA: Adds color palette constantsJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Moves Object Class from rooms.h to msn_def.hJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Adds room data for Ship chapterJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Updates renderImage() functionJoseph-Eugene Winzer
renderImage() now considers the size of image sections instead of blitting them on 320x200 by default.
2018-01-22SUPERNOVA: Setup image and section viewerJoseph-Eugene Winzer
Pressing 'w' increases the image index and 'e' the section index.
2018-01-22SUPERNOVA: Adds an empty ObjectType/ID and RoomIDJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Convert 18bit VGA to 24bit CLUT8Joseph-Eugene Winzer
Colors on VGA are 6bit per color channel, that is why the colors were so dark in earlier commits. Shifting the colors left by 2 gives us an approximated value for CLUT8.
2018-01-22SUPERNOVA: Fix OOB write in paletteBrightness()Joseph-Eugene Winzer
Palette color 255 doesn't seem to be used
2018-01-22SUPERNOVA: Add palette fade in/outJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Fix image palette loadingJoseph-Eugene Winzer
Mistakenly, during image loading the system palette was completely substituted by the image palette although the first 16 colors are supposed to be preserved.
2018-01-22SUPERNOVA: add text renderingJoseph-Eugene Winzer
Currently renderText() has two performance drawbacks. First, it locks the screen surface during the whole function for drawing the text directly to it. Besides that, it accesses the pixels in a cache unfriendly way because the font glyphs are stored tilted by 90 degrees. Most likely it won't pose any problems but if it should those issues need to be prioritized.
2018-01-22SUPERNOVA: add characterWidth() functionJoseph-Eugene Winzer
Also did some cleanup on the font definition
2018-01-22SUPERNOVA: add renderBox()Joseph-Eugene Winzer
2018-01-22SUPERNOVA: fix palette corruption on decodingJoseph-Eugene Winzer
2018-01-22SUPERNOVA: (TEMP COMMIT) drawing to screen surfaceJoseph-Eugene Winzer
2018-01-22SUPERNOVA: Added basic game loop and play sound samplesJoseph-Eugene Winzer
There has been many other changes like copy/pasting room definitions, skeleton for image decoder, .. Getting supernova mod format support seems to be a good next step.
2018-01-22SUPERNOVA: Create engine skeleton and game detectionJoseph-Eugene Winzer
2018-01-21XEEN: Fixes for speed table calculation, RT_HIT range type cleanupPaul Gilbert
2018-01-21XEEN: Correctly skip over unconscious or dead chars during combatPaul Gilbert
2018-01-21XEEN: Properly save/restore main UI buttons during combat turnsPaul Gilbert
2018-01-21AUDIO: Fixes Protracker Portamento effectJoseph-Eugene Winzer
.period overflowed if .portaToNoteSpeed > .period in the else if case
2018-01-21XEEN: Fix combat stalling when ranged attack comes from a back rowPaul Gilbert
2018-01-20XEEN: Cleanup of animate3d method's ranged attack codePaul Gilbert
2018-01-20XEEN: Fix reaper cutscene renderingPaul Gilbert
2018-01-20XEEN: Add invincible debugger commandPaul Gilbert
2018-01-20Merge pull request #1112 from bonki/bonki-indeo3-silence-compiler-warningsPaul Gilbert
IMAGE: Fix Indeo3 compiler warnings
2018-01-20XEEN: Break out of gameplay when party is killedPaul Gilbert
2018-01-20IMAGE: Fix Indeo3 compiler warningsAdrian Frühwirth
2018-01-18XEEN: Implemented death cutscene methodPaul Gilbert
2018-01-17SURFACESDL: Remove erroneous override declarationsrsn8887
2018-01-17PSP2: remove code duplication in psp2 graphicsmanagerrsn8887
2018-01-17XEEN: Fix display of water tiles on the outdoors minimapPaul Gilbert
2018-01-17XEEN: Fix display of text in bottom screen dialogsPaul Gilbert
2018-01-17DOC: Fix readme in LIESMICHrootfather
2018-01-17DOC: Update Starship Titanic instructions in German README filerootfather
2018-01-16XEEN: Add spells debugger command to give party all the spellsPaul Gilbert
2018-01-16SCI32: Fix PQ4 Barbie shoe points patch selectorDavid Fioramonti
The original script patch had the correct literal value but the wrong selector name in the comment for the literal value, so when it was converted to use a selector lookup in c5dce17b1f1392feb8825aba5addbc3999eeaa51, the patch broke because the wrong selector name was used. Fixes Trac#10392. Closes gh-1107.
2018-01-16XEEN: Fix armor class calculationsPaul Gilbert
2018-01-15XEEN: Fix crash at end of combat turnPaul Gilbert
2018-01-15XEEN: Renaming of MazeMonster _fieldAPaul Gilbert
2018-01-15XEEN: Fix monsters to resume idling after finishing attacksPaul Gilbert
2018-01-15BLADERUNNER: Silence GCC warningsTorbjörn Andersson
2018-01-14XEEN: Fix compiler warningPaul Gilbert
2018-01-14XEEN: Fix loading savegames from Dark SidePaul Gilbert
2018-01-14XEEN: Cleanup of ranged attack shooting row arrayPaul Gilbert
2018-01-14XEEN: Fix monsters to only fire one arrow per targetPaul Gilbert
2018-01-14XEEN: Fix showing savegame meta infoPaul Gilbert