Author Topic: Labyrinth Z  (Read 62307 times)

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #60 on: August 18, 2008, 07:57:04 am »
My level editor is Notepad. But i guess that doesn't work for all kinds of games... ;D

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #61 on: August 18, 2008, 12:00:07 pm »
I've never tried anything like that.  Do you just write down the sizes of things or what?
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #62 on: August 18, 2008, 12:50:11 pm »
No, i'm using a 2D ASCII-representation of my level and expand it to 3d when loading it.

But i guess it doesn't fit very well in your case, because you have different height levels.

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #63 on: August 18, 2008, 05:46:06 pm »
Can you post a little example of it?  I'd like to see that.
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #64 on: August 19, 2008, 12:24:04 am »

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #65 on: August 19, 2008, 03:07:28 am »
It's small.  Very efficient.  I may think toward moving into some kind of direction like that eventually, when I actually know where I'm going with the game.  It's kind of trial and error right now.  I think one interesting thing a person could do is come up with a set of rules and do a random generated level.  It would have to start with a grid design, of course, and that might be tough if I change height much. 
click here->Fireside 7 Games<-

Offline paulscode

  • double
  • *****
  • Posts: 863
    • View Profile
    • PaulsCode.Com
Re: Labyrinth Z
« Reply #66 on: August 19, 2008, 03:22:58 am »
No, i'm using a 2D ASCII-representation of my level and expand it to 3d when loading it.

But i guess it doesn't fit very well in your case, because you have different height levels.


You could do it with two seperate ASCII files (the second being a "height map").  I would create the main map first, then make a copy of it to work with as a template for your height map.  I did something similar to this in a 2D game I wrote which used a basic grid map with 3 height levels per square.  In that case, I used 3 ASCII files (since I was creating layer maps, not height maps), but something similar might work for you.

--EDIT-- BTW, I haven't actually run your game yet, so disregard if my suggestion was irrelevant ;D
« Last Edit: August 19, 2008, 03:26:32 am by paulscode »

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #67 on: August 21, 2008, 03:23:14 am »
The second level is up for labyrinth Z.  It introduces a switch and an unlevel jump.
click here->Fireside 7 Games<-

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #68 on: August 22, 2008, 03:06:27 pm »
I added a jump animation, but it's only on level 2 so far.
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #69 on: August 22, 2008, 03:53:00 pm »
I've tried level 2 on my EEEPC's default Linux installation. It had some problems with the keys...they simply didn't work. Apart from that, it worked fine and fast enough on this 630Mhz Celeron single core machine. I'm still having problems to determine when to jump, but i have no idea on how to improve this either. Mind you if i add Labyrinth Z to the "Projects" page?

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #70 on: August 22, 2008, 07:28:06 pm »
Quote
Mind you if i add Labyrinth Z to the "Projects" page?

No, that'd be great.  I don't know what to say about the keys.  I used vk whatever it is so it's java's fault,then.  Eee pc is pretty new so maybe they will work it out in the future.  The jumping just takes practice.  I made the small blocks slightly larger.  I can go out and come back a fair amount of times, but sometimes I don't make it, so it's about right for me.  I find I need to look at the whole animation, not just the tail, to do it.
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #71 on: August 22, 2008, 08:59:52 pm »
The tail is ok for me as an indicator for comparing jump widths. It's just that, when trying it first for a platform, i have no feeling which width is required to land safely. I have that feeling when throwing grenades in a shooter but not here. Maybe a kind of color schema would work or something that gives additional depth information like trees or bushes on the platforms that don't change its size. That would make it easier to tell if a platform is far away and larger or near by and small.

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #72 on: August 22, 2008, 11:44:20 pm »
Quote
That would make it easier to tell if a platform is far away and larger or near by and small.

The whole idea there, is that all the platforms are exactly the same thickness, but differ in size.  I'm not sure they really are exactly the same right now because I'm still working things out, but that's the intention.   Since you can always see the edge of a platform, eventually your eye will become trained to it.  Starting out, you really have to do the trial and error, thing.  There's no way around that, but it's part of the fun of it all for me.  There's really no punishment for failure aside from you have to go back to the start after the third miss.  It keeps track of you're last jump point so you can make adjustment.  The levels start out fairly easy, if you've played the 1st one recently, and then will advance.  This one is probably about there aside from there will be more different height jumps.   After that, I plan to do switch type puzzles with moving platforms and whatnot with some pretty hard jumps once in a while.  There are so many games where the character just builds up experience, but it's fake.  I like games where I actually get better at doing things.
« Last Edit: August 23, 2008, 12:00:31 am by fireside »
click here->Fireside 7 Games<-

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Labyrinth Z
« Reply #73 on: August 28, 2008, 08:01:47 pm »
No, that'd be great.
Fine, i've added it to the projects page.

Offline fireside

  • double
  • *****
  • Posts: 607
    • View Profile
Re: Labyrinth Z
« Reply #74 on: August 28, 2008, 08:50:37 pm »
Great thanks.  I need all the publicity I can get.;D   I've gotten a few compliments about it.  I need more levels.  Working on a few more game elements to add to make it more interesting.
« Last Edit: August 28, 2008, 08:55:58 pm by fireside »
click here->Fireside 7 Games<-