Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: What do you think of this game?  (Read 3555 times)

0 Members and 1 Guest are viewing this topic.

Doodlemeat

  • Guest
What do you think of this game?
« on: April 05, 2014, 02:00:46 am »
A group of 4 including me, created a game on a local game jam using javascript which was held for about 48 hours from 13th Dec to 15th.
The outcome became a game called Melvind where you have to defend your beer keg from angry ketchup trolls whos main interest is consuming beer, using axes to throw at the trolls and build towers crafted from stone/wood. ** You play as a dwarf **.

Please play this here: http://doodlemeat.se/ggj13/
A new version is coming soon made in SFML with far more things and updates.
We are very open to feedback so please post something.

*** controls ***
x - Throw axis
c - chop wood or pick stone
f - goes into build mode(press 1 to build a tower). Toggle build mode if you want to use x or c again.
arrows - move
I know, awful controls. Will be much better in version 2.0


Some updates in new version
* Written in C++ with SFML.
* Multiplayer, LAN
* One more character, female
* Random generated levels
* Upgrades to towers
* More towers
* Multiple enemies with different attributes like hp, dmg, speed, cleverness(?)(how to use a pathfinding algorithm.)
« Last Edit: April 05, 2014, 02:23:12 am by Doodlemeat »

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: What do you think of this game?
« Reply #1 on: April 05, 2014, 10:02:05 am »
Quite funny :)

But also a bit difficult. It takes so long to gather the resources for a tower, while you're always under attack. And towers are very weak in comparison ;)
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10987
    • View Profile
    • development blog
    • Email
Re: What do you think of this game?
« Reply #2 on: April 05, 2014, 10:36:31 am »
I played right through it, so I guess it's engaging, plus the fact that's it's rather simple, makes it easy to just play it. ;)

From the difficulty, I wouldn't say it's really hard. Sure the cost are quite high, but over the five waves I built around 8 or so towers, lost three lives however.

What is missing, is an indicator if there are enemies close to the base if you're further away. And if you want to make it harder, you could limit the shots or add a cooldown, so one can't just spam the key as fast as possible. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

StormWingDelta

  • Sr. Member
  • ****
  • Posts: 365
    • View Profile
Re: What do you think of this game?
« Reply #3 on: April 05, 2014, 05:58:28 pm »
Maybe add a structure that warns you of enemies near your base?  Also adding other ways to get the resources you need might help, like say build a structure that pumps out more helpers to go mine things or help defend your base. :P  That aside nice work. :)
I have many ideas but need the help of others to find way to make use of them.

Doodlemeat

  • Guest
Re: What do you think of this game?
« Reply #4 on: April 05, 2014, 10:11:43 pm »
eXpl0it3r: One should not be able to build 8 towers! I do really not know how you did that. 2-3 towers is normal at this pace. It is maybe because deltatime is not used, or something with keyboard input.
About enemy indicators: we want the player to feel insecure when going further away from home(beer keg) and give the player a feeling of awareness, instead of alertness.

But I agree that the player should get some feedback if enemies is coming or not, but this is not really needed as for now I think. This is really not needed when multiplayer is implemented.

Nexus: I do not think we will decrease the amount of time it takes to get resources for a tower, but instead creating resource pools from where you can get X amount of a resource.

I can already see this game becoming more stable with C++ using SFML.
Do you have more suggestions about things you want to see in this game?

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10987
    • View Profile
    • development blog
    • Email
Re: What do you think of this game?
« Reply #5 on: April 05, 2014, 11:56:09 pm »
eXpl0it3r: One should not be able to build 8 towers!
Oops ;D

Well it felt kind of buggy sometimes. Like from time to time the enemies moved froward and then teleported one tile back again and there were many cases where enemies we're on one tile. And the movement felt really slow...
If I get time tomorrow, I could make a quick recording. ;)
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Doodlemeat

  • Guest
Re: What do you think of this game?
« Reply #6 on: April 06, 2014, 01:32:50 am »
Quote
enemies moved froward and then teleported one tile back again
This is because the enemies use A* algorithm. Whenever the environment is changed(chooped wood, picked stone, placed tower), a new path is calculated for each enemy. And since I need to calculate a path from tile A to tile B, I have to move the enemy to the last tile it successfully walked onto. I am doing so because the enemies does not collide with terrain at all(a fix for enemies not clipping trough any obstacles when a new path is generated).

StormWingDelta

  • Sr. Member
  • ****
  • Posts: 365
    • View Profile
Re: What do you think of this game?
« Reply #7 on: April 06, 2014, 01:58:26 am »
Quote
enemies moved froward and then teleported one tile back again
This is because the enemies use A* algorithm. Whenever the environment is changed(chooped wood, picked stone, placed tower), a new path is calculated for each enemy. And since I need to calculate a path from tile A to tile B, I have to move the enemy to the last tile it successfully walked onto. I am doing so because the enemies does not collide with terrain at all(a fix for enemies not clipping trough any obstacles when a new path is generated).
If I remember right there is a way to not have to reset AIs back to last good spot in A*.  Might be useful too. :)
I have many ideas but need the help of others to find way to make use of them.

Doodlemeat

  • Guest
Re: What do you think of this game?
« Reply #8 on: April 06, 2014, 02:14:36 am »
Yes, there is. I can save the tile position from the last path and let the enemy successfully enter it and then let the enemy walk the path.

 

anything