TIGSource Forums

Feedback => DevLogs => Topic started by: TheBreadCat on June 27, 2011, 11:58:15 AM



Title: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on June 27, 2011, 11:58:15 AM
hello TIGsources  :cavestory:
so im working on this game called 'Dungoens And Sewers!'.
so to descripe my game... think Spelunky meets a rogue-like.
so basicly its a platformer, in a randomly generated Dungeon/Sewer, with RPG elements.
Development Blog right there ->Thebreadcat.tumblr.com (http://Thebreadcat.tumblr.com)

(http://thebreadcat.com/scrn1)
(http://thebreadcat.com/scrn2)
(http://thebreadcat.com/inven)
AND DEMO
http://www.thebreadcat.com/DAS (http://www.thebreadcat.com/DAS)
note that this is a very early version of the game.
please report bugs  
oh, and you still cant die so far
       NOTE THAT THE TEXT AND SOUND IN THIS DEMO IS NOT THE FINAL THING      
ill make some real sounds ^^

Controls:
  [Left <] [> Right] well you can think on your own right ^^
 [DOWN] pick up an item.
 [Z] JUMP!
 [X] attack
 [SPACE] to bring up the inventory

progress: ( :handanykey: = done ,  :handpencil: = not done)
  :handanykey: make stuff you shouldn't be making when there are more important thing to make in the game.
  :handanykey: Platform physics
  :handanykey: Player movement
  :handanykey: Basic items
  :handanykey: Weapons
  :handanykey: Enemys
  :cavestory: Inventory (Working on it)
  :handpencil: Stats
  :handpencil: Sound
  :handpencil: Music
  :handpencil: Classes
  :handpencil: Level Generator
  :handpencil: Finish

history:
0.0.0.3.6(Current)
   fixed skeleton bug
   added version number in top right corner.

0.0.0.3.5
   better damage system.
   creepers do not leave a hole.

0.0.0.3
   fixed some minor things
   added creepers   .

0.0.0.2:
  pausing the game(both for unfocusing and inventory)
  simple inventory(hopefully also some management )
  fixed weapon collision
0.0.0.1:
  added enemys.
  made weapons work.
  build more the living class.

to be done:
0.0.0.4(Next):
  inventory management
  maybie some sound.
  more fun stuff(pickaxes and bombs )

Twitter: @marcoaslak
Want to chat about it? http://t.co/0qMnOXu


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: Daniel Seabra on June 27, 2011, 12:23:43 PM
This actually looks pretty charming! I assume everything is pretty much WIP at this point so I won't comment much on stuff, but it seems like a pretty cool idea.

And hey, the title caught my attention so perhaps it's not so bad, eh?


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on June 27, 2011, 12:37:34 PM
And hey, the title caught my attention so perhaps it's not so bad, eh?
ill keep it then :D and
I assume everything is pretty much WIP at this point so I won't comment much on stuff
well please, it can only make the game better you know ^^


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on June 28, 2011, 07:38:22 AM
im working on a level editor so i can make cooler levels for you guess, until i get the level generator up and running  :gentleman:


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on July 10, 2011, 07:42:42 AM
im having problems making the inventory. whats your approach on a inventory system(Technically)?


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: Sakar on July 10, 2011, 12:32:08 PM
That depends on the type of inventory, such as slot-based or list-based.

For slot-based I usually use a 2D array with references to the item in the slot. When I want to pickup an item, I loop over the array until I find an empty space then add the item to that spot. Getting items is very easy since you can directly access an item by its position in an array.

For list-based I'll use a linked-list, and just add items to the end of the list when I want to pickup an item. Getting items requires iterating over all the items, but this isn't really an issue since you typically shouldn't have very many items at a time.


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on July 10, 2011, 01:51:50 PM
That depends on the type of inventory, such as slot-based or list-based.

For slot-based I usually use a 2D array with references to the item in the slot. When I want to pickup an item, I loop over the array until I find an empty space then add the item to that spot. Getting items is very easy since you can directly access an item by its position in an array.

For list-based I'll use a linked-list, and just add items to the end of the list when I want to pickup an item. Getting items requires iterating over all the items, but this isn't really an issue since you typically shouldn't have very many items at a time.
yeah there is just the problem that i want to draw the items in the inventory(not that thats a problem), and make them like organizable.


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on July 16, 2011, 06:19:39 AM
the inventory is nearly done, i might get a demo out today :D


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: QOG on July 16, 2011, 07:55:20 AM
This looks pretty good thus far. You should have the player have to push (and feed) the pieces of creeper to some sort of guardian in order to get past it.


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on July 17, 2011, 07:09:29 AM
This looks pretty good thus far. You should have the player have to push (and feed) the pieces of creeper to some sort of guardian in order to get past it.
lol good idea :D


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: Core Xii on July 18, 2011, 12:28:02 AM
I have to ask. What do you need five parts in a version number for?? :waaagh:


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: Netsu on July 18, 2011, 12:33:51 AM
I have to ask. What do you need five parts in a version number for?? :waaagh:

Perhaps to better illustrate how incredibly early build it is ;)


Title: Re: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Post by: TheBreadCat on July 18, 2011, 11:49:42 AM
I have to ask. What do you need five parts in a version number for?? :waaagh:

Perhaps to better illustrate how incredibly early build it is ;)
correct  :durr: