Hello all!
I’m not a great programmer, but I know that if I have any questions I should consult the API or come here, but I’m not great at thinking of how to go about coding something. And therein lies my issue: I don’t know where to start in implementing game modes/different objectives to my game.
I’ve looked all over YouTube and online hoping to find something but I can’t find anything that is more conceptual and less tied to existing framework. I suppose I could watch or read through these resources and then find ways of implementing their ideas, but I don’t think I would learn much. I certainly wouldn’t learn how to adopt the right mindset I think is necessary for laying out the broad strokes in this area (something I would very much like to know more about) or which implementations of these systems is the most efficient.
The long and short of it is that I have a rogue-like which will assign a random objective upon entering a zone. That much I do know how to go about coding. But it’s integrating all the different “modes of play” that I can’t seem to figure out how to go about doing. My initial ideas are as follows:
-
Eliminate
-
Terminate a target and/or clear the zone of all enemies before you are allowed to continue
-
(I have a good idea on this one, but it still ties into my initial problem of adding it to the list that the picker has)
-
Secure Item
-
Find a specific item (a key or code) to allow the player access to the next zone.
-
Survive
-
The player(s) must survive for the allotted time and/or eliminate all the enemies that are in their way (the enemies would come in waves that increase in difficulty)
-
(A way I find interesting is having the waves on a timer, so as to avoid the COD: Zombies strategy of killing all but one so the player(s) can regroup before the next wave; again, this I can do given some time, but I need help with how this should be set up with a modePicker)
I feel I’m knowledgeable enough to have these modes implemented on their own, but the modePicker system itself is what I’m not sure how to do. There are loading breaks in gameplay when moving from one zone to the next, and that’s clearly where the system would be working, but how should that system be implemented, and how would it go about doing this?
I’d love to get some guidance (not necessarily hand-holding, but certainly some pointing in the theoretical right direction). Any and all help is greatly appreciated. I’d like to give you all thanks in advance, and if anything is unclear, I’d be happy to elaborate!
TL;DR - I have a game that needs a system to pick different game modes for the various zones but I have no idea how to go about creating something like this. I can explain the game further if needed, but I’ve tried to include (what I believe are) the necessities.
Many thanks and much love!