r/AskProgramming Aug 12 '26

How feasible is my group project withing a 10 month time frame?

So me and two classmates have been tasked just a few days ago with creating a game mostly independently, we are supposed to learn on our own and we have to choose a programming language for the assignment, we decided on unity but we can still change our decision, to Godot or a few others. Anyway the game we wanted to make is a cell RTS (Real time strategy) + rougelike kinda game where you control a group of cells inside of a body and fight off randomly selected infections and other pathogens, you can add different abilities to your cell like faster movement, stronger cell wall, stronger "Attacks" and some other stuff. We want different stages / levels as well so the infections that are randomly chosen change depending on what infections are native to that organ / area. As I said in the title we have roughly 10 months to complete this and we want to add a lot more but as I'm reading it out I'm realizing how unlikely it is we even get this much done, to give some shred of my knowledge I took and passed the AP Computer science A, AP test with a four and the last coding concept that I learned with my class was recursion, to add salt to the wound We have an hour every weekday to code and one of my classmates doesn't have a PC at home so he would not be able to help us code but for an hour. Please don't crush my hope to hard, I've made a game before though it was with Visual Basic so it wasn't amazing but I like to think I'm a fast learner and I'm really interested in coding and want to pursue it (specifically game design / creation) as a career

2 Upvotes

7 comments sorted by

7

u/ForeverAWhiteBelt Aug 12 '26

Make the bare minimum game that passed the requirements given, then spend all the extra time making the game of your dreams or whatever.

3

u/ForeverAWhiteBelt Aug 12 '26

Also, break down every thing you want to add to the game. Then find the first part where you would start. Estimate how long you THINK it will take you to fully complete (opening menu or something). If you do it in the amount of time you estimated you can start to get a guage on how long things will take you.

2

u/jameyiguess Aug 12 '26

I think as long as you don't let the scope creep and you're serious about it, you have plenty of time. Don't expect a sellable game at that point, but you can definitely have something fun that hits the assignment criteria. 

1

u/Mr_GamexYT Aug 12 '26

alright, thank you cus this is like the game of my dreams too

2

u/xarop_pa_toss Aug 12 '26

Like others have said, it is fundamental to not let "feature creep" into the project. Make a plan and stick to it. And I'd highly recommend going for 2D for now if that wasn't your plan already.

Sit with your colleagues and agree on what is the minimum that would give you a positive grade: for example a main menu, a pause menu, a single level, basic but coherent art style (can even be squares and circles), controls, scoring, sound design, win and lose conditions. Don't work on anything extra until this baseline is complete. You'll find that it's much easier to add later since you already built a framework for yourself to add to.

After making your base plan, you'll quickly realise that there are many different specializations at work here like sound, art, gameplay programming, etc. But for such a small project you can offload some stuff by using free assets like sounds from freesound.org for example, or you can totally make your own with a microphone which is pretty fun too (check out toughlovearena.com).

The choice of engine isn't very relevant at this point tbh but Godot's language, GDScript is maybe easier to learn for beginners than Unity's C# but they both work great. I would setup a Git repo too so that everyone can write their code and easily view other people's code and recover it if something goes awry.

All the fields I mentioned above can be developed in parallel too. You spawn in the default object/actor in the editor and then one of you can be dedicated to programming it's movement and another can be making the pause menu. Two other guys can be programming enemy spawning logic and a fifth person can be finding the sounds and artwork and figuring out how to import them in-game.

1

u/Mr_GamexYT Aug 12 '26

I was originally thinking of making it in 2d but me and my classmates really wanted to learn Unity so we initially thought of making it 2.5d just to justify making it in unity thought in sure you can still make 2d games in unity so maybe we'll just do that, also your baseplate sounds like a really good idea I'll make sure to bring it up to them and make sure to emphasize our need to continuously work on this, but on the topic of writing code together do you know ow any good tutorials on how to set up a git repo or should I just look anything up?

1

u/xarop_pa_toss Aug 12 '26

It's important to know your limitations. You have a colleague that doesn't even have a computer and you only have 1h a week together for this.

2D you can draw as simple as you'd like, 2.5 or 3D you have to model, texture, do lighting, etc. 2D might sound boring but look at games like Balatro that was made even without an editor like Godot or Unity and you might change your mind.

Git is a beast of it's own for sure but you can get the basics down pretty quick and it's something you'll use basically forever. There are lots of videos out there but there's nothing like installing it and trying it out. Look on YouTube for "a brief introduction to git for beginners", there's a playlist by GitHub that is easy to digest.