Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2

Merged
merged 12 commits into from
Oct 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tomb3 changelog

## Unreleased
## [1.1.0](https://github.com/Trxyebeep/tomb3decomp/tree/V1.1.0) (Oct. 29 2022)

### Original bug fixes

Expand All @@ -14,16 +14,16 @@
- Add crawl tilting.
- Add an option for PSX yellow poison bar.
- Make poison bar flash.
- Add an option for PSX water color.
- Add an option for (approximate, for now) PSX water color.
- Add colsub for sparks, like smoke.
- Improve bucket drawing, fixes PC bars disappearing in open spaces. Eg. beginning of Thames Wharf.
- Improve pickup display code to show transparency correctly.
- Add an option for PSX crystal sfx.

### tomb3 bug fixes

- Fix laser seams and color by refactoring its drawing function.
- Fix GetFullPath (fixes FMV playback).
- Fix laser seams and color.
- Fix GetFullPath (fixes some FMV playback issues).
- Fix skybox drawing (fixes Lara's Home crash when using the no crystals patch).


Expand Down
26 changes: 24 additions & 2 deletions USING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,22 @@
4. Enjoy!

#### CD version:
#TDB

1. Install TR3 through the CD setup.
2. Copy these folders/files from your CD to the folder you installed TR3 in:
- audio
- cuts
- data
- fmv
- pix
- DEC130.dll
- EDEC.dll
- WINPLAY.dll
- WINSDEC.dll
- WINSTR.dll
3. Get the latest release package.
4. unzip the archive and copy over the contents to you TR3 folder, overwrite when prompted.
5. Run the game once to get the setup window at least once before running anything in the ExtraOptions folder.
6. Enjoy!

### *Updating/Non-first time installing:*
1. Get the latest release package.
Expand Down Expand Up @@ -45,13 +59,17 @@
1. PC: Original PC bars.
2. PSX: PSX bars.

#### Improved poison bar: Toggles a PSX-like poison bar instead of the original flat yellow bar.

#### Pickup Display: Toggles the pickup display on/off.

#### Shadow:
1. PC: Orignal octagon shadow.
2. PSX: PSX circle sprite shadow.

### Lara's moveset:
#### Crawl tilt: Toggles Lara aligning herself with the floor when crawling.

#### Duck roll: Toggles the duck roll on/off. When ducked, press the Sprint button.

#### Flexible crawl: Provides less lag in her crawl moveset and restores the run-to-duck and the sprint-to-duck animations.
Expand All @@ -66,3 +84,7 @@
#### Disable Gamma: Toggles the gamma option. Having this option on allows for accurate RGB output, which is otherwise impossible with Gamma on.

#### DOZY: Toggles the flycheat on/off. in-game, press and hold the D O Z Y keys on your keyboard to fly. Walk button to get out of the cheat.

#### PSX Crystal sfx: Toggles the "woosh" PSX sfx when collecting crystals (instead of the PC heal sfx).

#### PSX Water Color: Toggles PSX water color.
8 changes: 4 additions & 4 deletions tomb3decomp.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "Tomb Raider III Community Edition"
VALUE "FileVersion", "1.0.0.0"
VALUE "FileVersion", "1.1.0.0"
VALUE "InternalName", "tomb3decomp.dll"
VALUE "LegalCopyright", "Copyright (C) 2022"
VALUE "OriginalFilename", "tomb3decomp.dll"
VALUE "ProductName", "Tomb Raider III Community Edition"
VALUE "ProductVersion", "1.0.0.0"
VALUE "ProductVersion", "1.1.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
Loading