Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411686 Posts in 69399 Topics- by 58453 Members - Latest Member: Arktitus

May 17, 2024, 09:57:19 PM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityDevLogsDungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)
Pages: [1]
Print
Author Topic: Dungeons And Sewers! 0.0.0.3.6 (DEMO AND CREEPERS)  (Read 1960 times)
TheBreadCat
Level 0
***


View Profile WWW
« on: June 27, 2011, 11:58:15 AM »

hello TIGsources  Cave Story
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




AND DEMO
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: ( Hand Any Key = done ,  Hand Pencil = not done)
  Hand Any Key make stuff you shouldn't be making when there are more important thing to make in the game.
  Hand Any Key Platform physics
  Hand Any Key Player movement
  Hand Any Key Basic items
  Hand Any Key Weapons
  Hand Any Key Enemys
  Cave Story Inventory (Working on it)
  Hand Pencil Stats
  Hand Pencil Sound
  Hand Pencil Music
  Hand Pencil Classes
  Hand Pencil Level Generator
  Hand Pencil 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
« Last Edit: June 28, 2011, 04:55:31 AM by TheBreadCat » Logged

Twitter: marcoaslak
Daniel Seabra
Level 1
*



View Profile WWW
« Reply #1 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?
Logged

I'm just some bloke. Going to go to Pasadena, CA, for four years so if you're over there gimme a shout-out. Will be cool to get to know some people.
TheBreadCat
Level 0
***


View Profile WWW
« Reply #2 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 ^^
Logged

Twitter: marcoaslak
TheBreadCat
Level 0
***


View Profile WWW
« Reply #3 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
Logged

Twitter: marcoaslak
TheBreadCat
Level 0
***


View Profile WWW
« Reply #4 on: July 10, 2011, 07:42:42 AM »

im having problems making the inventory. whats your approach on a inventory system(Technically)?
Logged

Twitter: marcoaslak
Sakar
Guest
« Reply #5 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.
Logged
TheBreadCat
Level 0
***


View Profile WWW
« Reply #6 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.
Logged

Twitter: marcoaslak
TheBreadCat
Level 0
***


View Profile WWW
« Reply #7 on: July 16, 2011, 06:19:39 AM »

the inventory is nearly done, i might get a demo out today :D
Logged

Twitter: marcoaslak
QOG
Level 3
***



View Profile WWW
« Reply #8 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.
Logged
TheBreadCat
Level 0
***


View Profile WWW
« Reply #9 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
Logged

Twitter: marcoaslak
Core Xii
Level 10
*****


the resident dissident


View Profile WWW
« Reply #10 on: July 18, 2011, 12:28:02 AM »

I have to ask. What do you need five parts in a version number for?? Waaagh!
Logged
Netsu
Level 10
*****


proficient at just chillin'


View Profile WWW
« Reply #11 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 Wink
Logged

TheBreadCat
Level 0
***


View Profile WWW
« Reply #12 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 Wink
correct  Durr...?
Logged

Twitter: marcoaslak
Pages: [1]
Print
Jump to:  

Theme orange-lt created by panic