FoonLudum Dare ExplorerUsers → PhaZ90771

PhaZ90771

Games

YearLDThemeGameDivisionRankOvFuInThGrMoCo
201326MinimalismCave Runnerjam5522.041.911.613.211.831.9441

Performance over time

overall score (left axis) percentile (right axis)

Scatterplots

Fun vs Overall

Innovation vs Overall

Theme vs Overall

Graphics vs Overall

Mood vs Overall

Comments by PhaZ90771

LD26 — Minimalism

DropPix by AtkinsSJ 2013-05-02T16:09:00

Pretty cool concept. I'd like to see this expanded upon. I feel like how the pixels are dropped is a bit unintuitive until you try it out. Also, the buttons on the sides of the board didn't work sometimes.

Somniphobia by Topaz 2013-05-02T16:50:00

The art was interesting, but it needed to be cleaned up more, such as the extra white pixels on the edges of the character's side view sprite.

I liked that you used the key name in the text. It's an interesting twist to teach the player the buttons without spelling it out.

I didn't even feel like I was in combat when I was supposed to.

The first level should have been the closest one to the player at the beginning. It served to confuse me right at the start.

While I felt the story could have been interesting, I had trouble figuring out what you were trying to convey to me. I should be able to get something substantial with just playing the game.

Mostly, I think you needed time set aside to clean up the assets and make sure things were intuitive. Also, make sure that if the focus is the story, that you use the strength of video games, a.k.a interaction and affecting the world, to convey the story.

Anyways, hope you and your team continue making submissions.

DeaN by Sakuyan 2013-05-02T14:49:00

Really cool concept. I wish there was a way to heal your character, like in the story mode. Maybe have a pet dog that will appear every once in a while that you need to survive, but could kill off if you get too close.

DeaN by Sakuyan 2013-05-02T14:53:00

Really cool concept. I wish there was a way to heal your character, like in the story mode. Maybe have a pet dog that will appear every once in a while that you need to survive, but could kill off if you get too close.

My high score so far is 928.

Minirena by Sh1rogane 2013-05-02T03:28:00

It reminds my of the original Mario Bros. What was your workflow like. For instance, how much time did you spend on QA and balancing?

Buried by danielcmessias 2013-05-06T05:41:00

Interesting idea. The controls felt unresponsive though.

Cubert J. Boxworth's Wild Stride by MatClassic 2013-05-06T07:02:00

Definitely a creative game. I like it.

BlindSight by silentspartan72 2013-05-02T15:25:00

Good game. Great mood. There's to much time spent without really making any progress though. I did run into a problem where I got trapped in a dead end, since the creature was blocking the way.

Blocked Maze by Back to Browse Entries 2013-05-06T06:54:00

Cool game. I felt like I didn't have as much control over the block as I'd like. Also, checkpoints in the later levels would have been really nice.

Circular Orbit by arctangent1759 2013-05-06T06:36:00

Very interesting concept. I'd like to see this polished and expanded upon in a full game.

50Coins by ironman 2013-05-06T05:52:00

I couldn't tell how I was moving around the world, and half the time pressing the move keys would not do anything. It was difficult navigating to find the coins. I like the audio, though.

MinimalRage by BlackJester 2013-05-06T06:33:00

The title definitely fits the game. Good job. It really requires you to think outside the box to finish the levels. It reminds me of Super Mario Bros. Lost Levels.

Minimal slots by edbrannin 2013-05-02T16:31:00

This is minimal, but there isn't any gameplay. There is no chance to win, and for some reason [1,1,1] is coming up for my a lot (may just be chance).

Min by peaveyj 2013-05-02T03:40:00

The options in the menu didn't seem to be able to be changed. As far as I could tell, you could only go right, and the win condition was to reach the right before your tail reaches you. It was very minimalistic, but I didn't feel like there was much of a game to it. The audio was interesting though.

Kill The King by Myyyvothrr 2013-05-02T16:02:00

It doesn't say anywhere in the description that it is a multiplayer game only. This makes it hard to test the game.

Cave Runner by PhaZ90771 2013-05-02T03:09:00

@peaveyj The passage is represented by a series of horizontal slices with two coordinates, (x,y) and (x2,y2). The collision detection function takes a rectangle to represent the object. The collision detection function looks at each slice and the next slice as a quadrilateral.

First it checks the y and y+h against each pair of slices to see if the object is vertically between the two slices, the same way you'd handle it in box collision detection. If not, it moves on to the next pair.

Next it checks if either the left side of the object is to the left of both slices' x coordinates, or the right side of the object is to the right of both slices' x2 coordinates. If it is, then the object is already inside the wall.

If the it gets to this final step, the left side's x position is between the two slices' x position, or the right side's x position is between the two slices' x2 position. I then use the slope of the wall to calculate at what y the wall, a line, will collide with the relevant side of the object, also a line. If the y value is between the y and y+h value for the object, the object collides with the wall.

I hope my explanation is clear. Let me know if I need to draw it out.

Cave Runner by PhaZ90771 2013-05-02T03:11:00

@Sh1rogane I don't know why the game's speed was weird. I programmed it so it would run at 60 FPS max, so it shouldn't have run any faster than that. I might look into that later, but I probably wasn't doing it the best way anyways.

Cave Runner by PhaZ90771 2013-05-02T09:13:00

@Sh1rogane & @Blinked What version of Windows are you two playing my game on?

Cave Runner by PhaZ90771 2013-05-02T09:16:00

@sPOCkEr2 Why were you confused about the play direction? Was there not enough feedback? Would it have made more sense if there was an animation for the player, like running?

Cave Runner by PhaZ90771 2013-05-02T09:18:00

@sPOCkEr2 & @Blinked & @Sh1rogane & @peaveyj Thank you for checking out my entry!

Cave Runner by PhaZ90771 2013-05-02T10:24:00

@Typedeaf Ya, I should have used delta time. I'll have to remember to use that next time. Would this be allowed as an after submission fix?

Thanks the tip, and for checking out my game!

Cave Runner by PhaZ90771 2013-05-02T15:07:00

@Topaz I was actually going to do all three, but I ran out of time ;_;

Thanks for checking out my game.

Cave Runner by PhaZ90771 2013-05-02T15:08:00

@silentspartan72 I'm glad you liked my procedural generation.

Thanks for playing my game.

Cave Runner by PhaZ90771 2013-05-02T16:54:00

@EricTheCoolDude I've actually run into that with other programs and games before. I've heard it has to do with things made with visual studio. Go here to get it:

http://www.microsoft.com/en-au/download/details.aspx?id=30679

Cave Runner by PhaZ90771 2013-05-05T20:57:00

@SuperlevelSebastian I was built for Win32, so it should work. Did it actually say that in an error message?

Mr. Minimal by sP0CkEr2 2013-05-02T09:35:00

Interesting game. I feel like Mr. Minimal should be able to move as fast as you can type, so the controls feel more fluid, or limit the enemies speed to Mr. Minimal's speed.

Level 25
Score 1751

ProductionVille by Blinked 2013-05-02T10:18:00

I liked the game. It was very easy to box in myself when I put down lumber mills. Also why only 1 person per house? It felt like I quickly started having to put down roads to put down houses, so my facilities could work at max capacity.