sigonasr2
|
1e7345d7b5
|
Implement skeleton for Enchant Confirm Window. Make original ability functions static for player class ability retrieval. Add private static access internal functions. Remove check for non-existing animations for player (would just not change the animation if it doesn't exist). Release Build 11598.
|
2 months ago |
sigonasr2
|
9b69a4ebb3
|
ogg vorbis resource pack encoding/decoding implementation started (currently crashes during playback)
|
3 months ago |
sigonasr2
|
e0d58aef04
|
Add in Comet Flare and remove restriction on Summon Comet and Solar Flare equip combination denying. Release Build 11357.
|
3 months ago |
sigonasr2
|
050821b1d2
|
Expand Wizard's Meteor ability configuration parameters. Implemented Summon Comet and Solar Flare enchants. Added incompatibility checks for these two enchants as equipment. Add in unit tests to check for validity of equipping accessories. Release Build 11350.
|
3 months ago |
sigonasr2
|
4f18cd41fb
|
Fix sound effect bug when lightning bolt hits a player (doesn't currently happen in-game). Implement Chain Lightning. Release Build 11328.
|
3 months ago |
sigonasr2
|
94b324e7a2
|
Restructure Effect class. Add in black hole and portal graphics. Added custom code analysis ruleset. Implemented Blink Portal enchant. Release Build 11230.
|
3 months ago |
sigonasr2
|
0288ccbd0c
|
Fix bug with multi-hit bullets not adding hit targets to the hit list before monster hit / player hit bullet callbacks. Implemented Piercing Bolt enchant. 199/199 unit tests passing. Release Build 11200.
|
3 months ago |
sigonasr2
|
b36e5b449d
|
Refactor testing suite to reduce boilerplate.
|
3 months ago |
sigonasr2
|
b0ee888b83
|
Implemented Spreading Pain enchant. Made applied buffs not immediately start ticking down on the same frame as they are applied since that causes some strange interactions with chained deaths. Release Build 11152.
|
3 months ago |
sigonasr2
|
a90c7d3c5d
|
Fix Firebolt and Lightning bolt crashing the game. Implemented cat animation override for Nine Lives enchant. Implemented Nine Lives Enchant. Release Build 11130.
|
3 months ago |
sigonasr2
|
220bf9d655
|
Sonic Upgrade Enchant implemented.
|
3 months ago |
sigonasr2
|
beb8e38b36
|
Fix bug with reapplying Advance Shield not properly re-enabling the shield drop timer causing the shield to last permanently on the player character. Add test case to cover this edge case. Release Build 11094.
|
3 months ago |
sigonasr2
|
719ed53923
|
Change MapType to use an enum instead. Add a HUD message overlay system. Disable ability for players to swap equipment during a stage. Update all maps to use MapType enums. Release Build 11084.
|
3 months ago |
sigonasr2
|
9da3e946e3
|
Implement Slam Shock enchant. Add stun effect to monsters. Release Build 11079.
|
3 months ago |
sigonasr2
|
ad02c7b59f
|
Fix Health and Mana display meters. Add shield damage number type. Fix shield display timer expiring the shield value. Fix unit tests relying on bad static ability state. Fix default attack range from being divided by 100. Force ChangePlayerClass to be called even if class is already set to same class due to additional side effects. Release Build 11074.
|
3 months ago |
sigonasr2
|
d224740fd4
|
Implemented Shield mechanic into the game. Fix Special Mark Enchant test and Wizard's Soul Enchant test. Release Build 11062.
|
3 months ago |
sigonasr2
|
ea752c14c6
|
Implemented Improved Ground Slam Enchant.
|
3 months ago |
sigonasr2
|
60175a20d2
|
Implemented Concussive Trap enchant.
|
3 months ago |
sigonasr2
|
45e6027c9e
|
Move the player outline repeating timer into a new OnLevelStart() callback for the player. Fixes a bug where the player outline will no longer update after the initial stage. Added more player timer helper functions for better control. Release Build 11031.
|
3 months ago |
sigonasr2
|
33ce153bc8
|
Implemented Trap Collector Enchant.
|
3 months ago |
sigonasr2
|
6d7240c765
|
Change starting location of DOT damage numbers. Fix velocity getting multiplied dramatically when damage numbers stack up and change size. Make gcc happy with unsigned long long cast syntax. Remove pthread flag from CMakeLists. Release Build 11014.
|
4 months ago |
sigonasr2
|
7ae7d3dcb3
|
Fix DOT buffs not counting down if their timers are intentionally reset. Tick timers are now independent of their duration timers. Make ONE_OFF effect more clear with extra comments. Fix Damage reduction test, which is supposed to report a 75% max damage reduction, even if a piece of equipment has 100% damage reduction. Separated the main buff type and the restoration type variables for DOT buffs so we can still identify them if we need to. Added three new constructors. Added helper AddBuff functions to Monster and Player accordingly with the new changes. Fix SpawnMonster not returning the correct reference to an object (was returning the reference to the termporary storage container). Refactored Buff Blend colors with some lambda functions. Implemented Burning Arrow enchant. Release Build 11008.
|
4 months ago |
sigonasr2
|
9df7016f2d
|
Implemented Evasive Movement enchant. Added a player outline decal on a repeating timer. Release Build 10989.
|
4 months ago |
sigonasr2
|
012f5de2a1
|
Implement Bloodlust enchant. Fix crash that occurs if the player class is not Warrior or Thief. Release Build 10981.
|
4 months ago |
sigonasr2
|
c017c353db
|
Normalized player's auto attack variable to now represent its range in units. Privatized it and added a GetAttackRange() function to use instead. Implemented Adrenaline Stim enchant. Release Build 10977.
|
4 months ago |
sigonasr2
|
e8ffeef5c9
|
Add timer reset function for the player. Fix black box player afterimage being visible. Release Build 10971.
|
4 months ago |
sigonasr2
|
2e95355fb9
|
Added a timer class. Added timers and helper functions to the Player class. Implemented Deadly Mirage enchant. Release Build 10966.
|
4 months ago |
sigonasr2
|
ab98adf094
|
Triple Toss enchant implemented. Fix obscure edge-case bug where the camera position, mouse position, and player positions are all equal causing a mouse aiming location length of (0,0) resulting in infinity size velocities. Release Build 10952.
|
4 months ago |
sigonasr2
|
e43798fa9a
|
Add cooldown charge system. Abilities can now only be used when they are holding charges. One charge gets restored for each full cooldown duration. The cooldown timer stops going down when maximum charges are reached. Fix item tests to use cooldown charges. Add in item checks for CDR test (Items should not be affected by CDR). Add GetPlayerAbilities function to collect and manipulate all player abilities at the same time (cleaner code structure + easier test functionality). Add helper functions util::vformat and util::wformat and to_wstring to make code using the std:: versions much more concise. Add unit test for cooldown charges system. Add helper functions to reset abilities to their original stats before enchant modifications tweak them. Added a helper function to retrieve which ability an enchant affects. Adapt ability HUD with new charge count features. Add Mountain theme to Chapter 2 maps. Multi-Multishot Enchant implemented. Release Build 10901.
|
4 months ago |
sigonasr2
|
7fa02b0f7a
|
Implement Mega Charged Shot. Release Build 10827.
|
4 months ago |
sigonasr2
|
ab963293d1
|
Add niconiconii user profile to solution include directories. Implement Extreme Rapid Fire enchant. Release Build 10819.
|
4 months ago |
sigonasr2
|
3d1d14ea2d
|
Implemented Poisonous Arrow enchant. Include unit tests. Release Build 10813.
|
4 months ago |
sigonasr2
|
150a72db73
|
Implemented Poisonous Arrow enchant. Release Build 10810.
|
4 months ago |
sigonasr2
|
78956e986c
|
Added helper functions for auto attack timer. Added unit test for auto attack timer functions. Implemented Quickdraw enchant. 132/132 tests passing. Release Build 10800.
|
4 months ago |
sigonasr2
|
859ff52ac2
|
Last Reserve enchant implemented. Release Build 10798.
|
4 months ago |
sigonasr2
|
333acfe149
|
Money displays in inventory windows use smaller shadow text outlines. Release Build 10793.
|
4 months ago |
sigonasr2
|
00e22877c4
|
Integrate display color provided in Item Enchant configuration to show up for enchanted items displayed in menus and their descriptions. Release Build 10737.
|
4 months ago |
sigonasr2
|
0e3d57be24
|
Move ItemEnchant's attributes into separate private variable allowing us to add a Setter and Getter for the attributes to call UpdateDescription function whenever an attribute is modified. Fix rounding display bug (use round instead of ceil) when comparing improvements/downgrade attributes in the character equip menu. (This handles values like 15.000001 and 14.99999 from screwing up the differential displays). Release Build 10729.
|
4 months ago |
sigonasr2
|
5dc46664eb
|
Add public Getters for loadout item functions. Implement Wizard's Soul Enchant. Release Build 10708.
|
4 months ago |
sigonasr2
|
4ca3cf4426
|
Fixed dumb forced const_cast on GetPos() for player (converted to const ref return type). Added test for Reaper of Souls to validate collection of souls and healing/cooldown effects work. Release Build 10703.
|
4 months ago |
sigonasr2
|
300e9834c7
|
Add UpperZone and LowerZone TMXParser's Map Constructor. This way we don't have to specify the zones ourselves creating invalid maps during testing. Added Reaper of Souls enchant unit test. Add unit tests for equipping two rings of the same enchant. Unique and class enchants behavior modified to not double up. 128/128 unit tests passing. Release Build 10694.
|
4 months ago |
sigonasr2
|
cfd73ab036
|
Implemented Death Defiance enchant. Correct shadow render strings being square (not using proper Y sizes to create cached text). Move game configuration initialization out to global scope to allow config variables to be used when initializing the AiL class. Release Build 10670.
|
4 months ago |
sigonasr2
|
62086cbd92
|
Implemented Emergency Recovery unique enchant. Added unit test. 126/126 unit tests passing. Release Build 10653.
|
4 months ago |
sigonasr2
|
94bd702ee8
|
Implemented Second Wind unique enchant. Added unit test. Release Build 10646.
|
4 months ago |
sigonasr2
|
f84787971d
|
Lethal Tempo unique enchant implemented. Added helper functions for retrieving, writing, and reading buffs easily. Added unit tests for new enchant. 124/124 tests passing. Release Build 10635.
|
4 months ago |
sigonasr2
|
2f244e21ff
|
Added stat-based item enchant checks. Remove friend class dependencies from unit tests and added appropriate publicly exposed functions. Release Build 10538.
|
4 months ago |
sigonasr2
|
68e7446053
|
Add Enchant API and EnchantItem() function that applies a random Enchant onto an item. Added HasEnchant() check to see if an equip has an enchant for future integration of enchants in the game. Fix money listeners structure not being reset between unit tests. Add unit tests to ensure items receive correct valid enchants and we can properly detect the player has enchants. Release Build 10527.
|
4 months ago |
sigonasr2
|
c36f783fc9
|
Tidied up monster drawing functions with portable lambdas to get rid of some copy-pasted code, making draw manipulation simpler. Implement Curse of Death ability. Release Build 10391.
|
4 months ago |
sigonasr2
|
864b491c46
|
Adjust all spaces to tabs for consistent whitespace formatting on source files. Implement Throw Poison Ability. Added general Color Mod Buff so coloring targets a certain color based on applied buff is simpler. Release Build 10389.
|
4 months ago |
sigonasr2
|
ede4bffa7a
|
Trapper's Mark Target and Witch's Curse of Pain abilities should not go on cooldown if no target is found. Added purple glow/outline effect to monsters affected by Curse of Pain. Release Build 10363.
|
4 months ago |