-
-
Notifications
You must be signed in to change notification settings - Fork 492
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
Item Pocket #3070
Item Pocket #3070
Conversation
Please fix initialization order:
|
Oh, right, this is a draft, so my comments were maybe a bit premature. |
|
Has the ability to disable the itembox been discussed? |
What do you mean by disabling it...? It's a core gameplay feature |
Pardon? I meant that some level designers may want to disable it for themselves (or per world). I am curious on the consensus. I personally wouldnt enable it for my worlds |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall, amazing work on this PR!
Encountered a bug: The "Add Player" option in "Multiplayer Settings" does nothing.
Additionally, I believe that launching the powerup from the item pocket to the side (like a Tuxdoll), perhaps to the opposite side of where Tux is facing, would make utilizing the powerup from the item pocket require more concentration and consideration of where to utilize, since the player would also have to catch it, instead of waiting for it in the same spot.
I am also personally not a fan of the blinking effect that launched pocket powerups have. Maybe we could do without it?
The blinking effect indicates that you can't pick it up yet. This is a mechanism that prevents immediately grabbing the object upon jumping. Also, I think the general consensus is that it shouldn't move in x axis whatsoever but I might be wrong so I'll leave this up for discussion. |
Can you check if power up stacking was truly removed in case I missed something? |
Co-authored-by: Vankata453 <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take a look at the comments below, as well as the following:
- multiplayer_player_menu.cpp:118 uses the same code as
GameSession::on_player_added
so it can be replaced with a call to that function. GameSession::on_player_removed
shouldn't remove the player fromPlayerStatus
, since that will removed all the data for that player, when they may reconnect.The "Add Player" bug from "Multiplayer Settings", as mentioned in the previous comment, is still present.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work - reviewed both the code and the in-game functionality
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zero twerking found here, bucko! only working.
being that this seems to be done, could it be merged? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code-wise looks good now!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works great!
The Item Pocket allows you to save a powerup for later use. If you collect a flower while having a bonus greater than
GROWUP_BONUS
, that flower gets equipped and the old flower gets stored in the top left corner of the screen. Now, the player can press the newITEM
control (usually Select/Back or Left Shift) to use the stored flower by throwing it up and catching it.This pull request replaces the powerup stacking feature because this new solution is much more balanced. It also limits the amount of concurrent players to 4.