Commit graph

624 commits

Author SHA1 Message Date
hackgrid 588bf1d377
Fix Makefile 2023-05-01 20:22:09 +02:00
Weston Salinas c0602d1dae added crossed portal flags 2023-04-30 21:39:21 -05:00
Weston Salinas cd756ddb17 Fixed Game Freeze on Pellet Kill Inside Portal
- game would freeze previously when player died in or near portal (because the portal would close with player still in it)
- moved the player touching check to be inside of the sceneClosePortal function.
- game no longer freezes when killed within a portal.

Fixes #108
2023-04-30 21:10:06 -05:00
Weston Salinas 676cb60038 Fixed Box Dropper Trigger in Chamber 4
Fixes #104
- simply encompassed the entire chamber past the glass in chamber 4 with the box dropper trigger
2023-04-30 20:44:49 -05:00
Weston Salinas 3d4cfebe08 Force Places Auto Portals on Conflict
Fixes #141
- this fix forces an autoportal to be placed if there is a conflict.
- if there is a conflict when an auto portal is attempted to be placed it will:
1. close the other portal
2. save a copy of the parameters to the sceneFirePortal function in new SavedPortal struct
3. continuouslyAttemptingPortalOpen == 1
4. attempt to open the same portal once every single sceneUpdate call
- once it finally can open the portal it will set continuouslyAttemptingPortalOpen back to 0
2023-04-30 19:45:06 -05:00
lambertjamesd ac240fdffa
Merge pull request #144 from westonCoder/left-right-audio-fix
Fixed flipped audio panning direction
2023-04-30 15:57:52 -06:00
James Lambert 5c7cf66f29 refactor load game menu for reuse in save game menu 2023-04-30 15:56:53 -06:00
Weston Salinas c0c8047a7e Fixed flipped audio panning direction
- panning was flipped for 3d objects

Fixes #103
2023-04-30 15:04:02 -05:00
James Lambert 4adbef10b4 Start work on load game menu 2023-04-29 21:32:38 -06:00
lambertjamesd f1ca5ae1e4
Merge pull request #120 from 2xAA/patch-1
Add a bug report template (create bug_report.md)
2023-04-29 17:05:17 -06:00
lambertjamesd 2bdffa48bd
Merge pull request #128 from westonCoder/makefile-fix
Require clips.h When Compiling Menus
2023-04-29 17:04:48 -06:00
lambertjamesd 7414fad979
Merge pull request #129 from westonCoder/decor-object-audio-stop
Shuts Off Decor Object Sounds When Deleted
2023-04-29 17:04:29 -06:00
Weston Salinas 51cee76822 Shuts Off Decor Object Sounds When Deleted
- stops decor object sounds when fizzled or deleted.

Fixes #116
2023-04-29 11:23:48 -05:00
Weston Salinas 5dece6e607 Require clips.h When Compiling Menus
- was unable to build withoug clips.h being built before test_chamber_00.h
2023-04-29 11:15:26 -05:00
Sam Wray 2e3f391192
Update bug_report.md 2023-04-29 11:13:29 +01:00
Sam Wray 02f781e69e
Create bug_report.md
Add a bug report template based on the information requested in [the beta announcement YouTube video](https://www.youtube.com/watch?v=ctHE2Utcpnk)
2023-04-29 11:09:56 +01:00
James Lambert 3d996bd015 Work on savefile stuff 2023-04-28 22:55:24 -06:00
James Lambert 5b095414bc Start working on savefiles 2023-04-28 20:56:39 -06:00
James Lambert 29919c1fa5 Start work on audio settings 2023-04-27 20:29:56 -06:00
James Lambert 6983afe8e1 Get control settings working 2023-04-27 08:39:14 -06:00
James Lambert 16adc80e11 Implement control icons 2023-04-26 22:03:41 -06:00
James Lambert d1ee0627d3 Work on controls menu 2023-04-26 08:00:17 -06:00
James Lambert bba255a357 Work on controls menu 2023-04-25 21:20:32 -06:00
James Lambert e104577c41 Work on configurable controls 2023-04-25 08:51:55 -06:00
James Lambert b7d1404868 start on options menu 2023-04-22 22:57:50 -06:00
James Lambert e648add422 Breakup menu code into multiple files 2023-04-22 22:33:29 -06:00
James Lambert 2e47a2f541 Link up menus 2023-04-22 20:51:19 -06:00
James Lambert 1fb3234815 Fix chapter image 2023-04-22 17:46:25 -06:00
James Lambert 8621a04d3c Made a lot of progress on new game menu 2023-04-22 17:32:28 -06:00
James Lambert 0c8bc76732 Fix issue with first frame of camera animation 2023-04-22 09:03:33 -06:00
James Lambert ba5f97b346 Work on main menu camera 2023-04-21 23:32:46 -06:00
James Lambert 6b311659d6 Start work on main menu 2023-04-21 21:05:14 -06:00
James Lambert aa3ea24c16 Get font rendering working 2023-04-21 16:46:26 -06:00
James Lambert 33e997309e Start work on font rendering 2023-04-20 08:32:40 -06:00
lambertjamesd e1c6cf6a94
Merge pull request #100 from hackgrid/master
update building instructions in readme
2023-04-20 08:03:38 -06:00
hackgrid d877ed5e84
update building instructions in readme 2023-04-19 23:18:12 +02:00
James Lambert d574d1df95 release 0.8 2023-04-18 21:16:27 -06:00
James Lambert b459f46db8 Fix door animation bug 2023-04-18 20:58:25 -06:00
James Lambert fbcedbec80 Refine portal_pak_dir extraction process 2023-04-15 00:30:21 -06:00
James Lambert 85c46f8f33 Set starting level back to 0 2023-04-13 19:50:22 -06:00
James Lambert 7b8d96c9e1 Add fizzler to test chamber 07 2023-04-13 06:48:01 -06:00
James Lambert 0eb3a399a0 fix door not closing all the way
fix auto uv generator
2023-04-13 06:44:01 -06:00
James Lambert c2bb0772f4 Fixup uv rotations 2023-04-12 20:26:41 -06:00
lambertjamesd 975a5bd827
Merge pull request #95 from westonCoder/switch-sounds
Added All Switch Sounds
2023-04-10 16:38:51 -06:00
lambertjamesd 89a044d93d
Merge pull request #94 from westonCoder/camera-shake
Added Player Shake In Elevator
2023-04-10 16:38:18 -06:00
James Lambert a1964cf75e Finish up test chamber 07 2023-04-10 16:34:55 -06:00
James Lambert a0ee1f87bc Finish up test chamber 07 2023-04-09 14:20:24 -06:00
James Lambert e84e11acfa Finish up test chamber 07 2023-04-09 14:16:54 -06:00
James Lambert d4105b04a7 fix broken test chamber 07 2023-04-09 10:31:37 -06:00
James Lambert 926882261f make much progress on test chamber 07 2023-04-08 18:28:58 -06:00