LD35 April 15–18, 2016

Flat and finished!

Linky

Screenshot 12

Bye everybody, I’ll go to sleep. I’m looking forward to playing your games.

I guess, that is it

I im not happy with the result. Some internet problems have delayed the overall development a lot and greatly damaged my motivation. I didn’t finish what I wanted and the result is not really a game, but I am too tired for working on and just submit now.

I hope, that I can use my own engine next time.

Changing Tide – Current progress

Here’s my current progress. Tomorrow, I have a day off for jamming.

status-201604180112

 

It’s still somewhat placeholder graphics, but there’s some progress:

changingtide

Sheep Shift

They do move in herds.

View post on imgur.com

The sheep are sheeping everywhere, and we’re still on target to jam the rest of Sheep Shift out!  Uh…also our dog won’t move backwards.

-Jodi, Artist, Sleepy Sheepie, pixel pusher

Voilà!

My game is completed and I’m really happy about how it turned out. Also, this was the perfect excuse to finally upload a game to Google Play Store!

I hope you play it and have fun with it! I know there is a LOT of work to do, I’m planning on adding more modes and working a little bit more on the HUD and graphics. I’d love to hear some feedback from you!

So please, go and play ShapeGrid! 😀

 

Thanks a lot!

I made it! Go check out Makeshift now!

I’ve just uploaded Makeshift, my Ludum Dare entry about high fashion.
I found out that a shift is a kind of dress, so I rolled with that and made a very silly game about decorating shift dresses on the fly to send out on the runway.
Check it out here, if it sounds interesting:
http://ludumdare.com/compo/ludum-dare-35/?action=preview&uid=29805
ms3

Comments

HoldMeImScared
17. Apr 2016 · 23:29 UTC
Shifts, yes. Awesome application of theme, LoL

Done! See you at LD36 :)

Finished the game and posted it last night, but was lil busy wrapping up the weekend requirements for my home :) so decided to write down the post or any postmortem today.

PLAY HERE

goo.gl/80EcnE 

Anyways, not much to say, I started late, but was able to put something together. And because of that delay I had to make some sacrifices, which includes ignoring the animations, and OMG the static sprites looked just nice and didn’t need animations in fact 😀

I know animations would be great, but was time bounded. But the bright part, with this Jam iteration, there were a new lesson as usual, and this time’s lesson was how to render art in a fuzzy pencil way, without an actual pencil!

janpuTech_1

Best luck for everyone on catching the time!
-m

Mountains will Crumble! Seas will rise!

Tada! Finished my #LD35Jam game, Atlantis Dare

View post on imgur.com

Ludum Dare Link

itch.io Download Link + Source Code

Gameplay

The premise is of a civlisation-type turn-based, tile-based strategy game. where every 12 turns, the terrain is re-generated at random. The land changes completely, with big consequences for the player.

Players build up their civilisation in the preceding turns, accumulating food, stone and prayer points from the cities, farms and mines they’ve built. When the land changes, prayer points are spent to “pray to the Gods” to rescue the cities, mines and farms that have ended up in the ocean. I.e. the player can move their sunken cities, mines and farms back to new locations on dry land (or otherwise let them drown and be destroyed).

Inspiration & Design

I was inspired by the idea of “winters” in the game Endless Legend, and wanted to take that a step further. Having the landscape change so radically at regular intervals forces players to plan ahead and get a good balance between building their civilisation and accumulating prayer points so they can rescue at least something when the land changes suddenly dump all their hard work in the oceans. It forces players to also rethink their civlisation’s plans, and maybe change strategy on the fly, if, say, the next landmass has far more mountainous terrain than before, or is just a single small island. There’s also a few sneaky tactics I’ve already found when playing, such as building new cities just before the land changes, then rescuing only those newly build cities with small populations. That way I can get away with needing only relatively few farms for the next few turns. However, if all my cities end up on dry land when the land changes, I’m then lumbered with more cities than I really want or can support. So there are risks or unexpected downsides to many strategies.

Balancing

This is the second Ludum Dare that I’ve actually finished, and ahead of time, so quite happy. Plus I spend yesterday watching the football and a large chunk of today doing DIY (that’s my excuse at least if anything is horribly broken in the game that I’ve not yet found). There are a few bugs in there. I couldn’t quite pin down all of the scenarios where you’ll lose unexpectedly. Sometimes a city will be destroyed even though the player just built a new mine or farm. This is largely due to the order in which things are checked at the end of the turn, which I’ll need to sort out at some point.

Also I’ve not actually managed (and so tested) a victory yet. Hoping some people will have victories and that it’s just a matter of taking a bit of time, rather than the game being too difficult. The game seems to have a good balance otherwise. Players can sometimes paint themselves into a corner, and there are a few scenarios where they end up totally screwed (such as running out of stone and not having enough mines). I decided not to include special temple buildings in the end as players seem to accumulate prayer points fairly easily just from cities.

Other Issues

The game probably needs a better tutorial. I know how to play because I made the thing, but I suspect a lot of people will struggle with figuring it all out. Again, if I come back to the game at a later time, that’ll be one of the things I look to add in as a priority.

The art work is also super-crappy. The building sprites are too small to really see what they actually are, and that’s not even accounting for my less than amazing art skills. The blocky square terrain has a certain aesthetic to it at least, but it’s not obvious that the “grey” blocks are mountains, so again, if I come back to the game at a later time, I’ll be looking to make that more obvious

Construction

I started off with the terrain generator and setting up a simple isometric camera in Unity3d. To generate the terrain, firstly, I use a random perlin noise generator. This is a fairly standard technique for generating random terrain heights. Separately, I pick a random, non-edge “origin” tile. Finally, I have a graph (an animation curve in Unity) that looks like the image below:

View post on imgur.com

The bottom axis is the distance of any one tile from the origin tile, and the left axis, the number that tile will get at any set distance. I add that graph number to the perlin noise number for the tile. If the resulting number is greater than a threshhold variable, then that tile is grassy plain. Otherwise it’s watery ocean:

// generate new plains
float perlinSeed = Random.Range (0f, 1f);
Vector2 oriVec = new Vector2(originTile.x,originTile.y);
for(int i = 0;i<tiles.Length;i++){
for(int j = 0;j<tiles[i].Length;j++){
if(i==0 || j==0 || i==tiles.Length-1 || j==tiles[i].Length-1){
//edge tile. remains as sea
} else {
Vector2 currentVec = new Vector2(tiles[i][j].x,tiles[i][j].y);
float distToOrigin = Vector2.Distance(oriVec,currentVec);
float perlin = Mathf.PerlinNoise((currentVec.x/landDimensions) + perlinSeed,(currentVec.y/landDimensions) + perlinSeed); //landDimensions is the square dimension of the tiles (20)
if(perlin + landDistanceFactor.Evaluate(distToOrigin)>waterFactor){ //landDistanceFactor is the Unity animation curve. waterFactor is the threshold, usually 0.7f
// make a land tile
tiles[i][j].terrainType = Tile.TerrainType.plains;
landTiles.Add(tiles[i][j]);
}
}
}
}

For subsequent land shifts, the origin tile is picked from one of the current land tiles. That gives an extra bit of continuity and makes the game more likely to dump just half of the player’s stuff in the water, rather than all or none of it.

Next came generating the mountains. For this, I took a similar idea. I pick 3 random grassy plain / land tiles as mountain range origins. Then I pick a random direction for the mountain range to run in, and a random angle between 60 and 30 degrees. For each of the neighbouring tiles to the mountain range origin tile, I find the angle between the vector from the neighbour to the mountain origin tile, and the mountain range’s general direction vector. If that angle is less than my random angle, that neighbouring tile is made into grey mountain and added to the range. I then just iterate through all the newly created mountain tiles until the mountain range hits the sea and no new mountains are added.

This seems to produce a good balance of mountain and plains in vaguely “mountain chain/range”-like formations. Sometimes if the angle is too large, then there ends up being a big patch of mountain, but even that can be its own challenge / opportunity for a player, and I’ve yet to come across an entire island of just mountain or just grassy plain.

After terrain generation, the civ part of the game was made in tandem with the UI. I started off with just a basic building type and it took a while to get a UI that would let me pick a tile and create the building on that tile. But once that was done, was just a case of extending the basic “building” type in an object oriented manner for the city, farm, mine etc. Finally, each time I added something like cost to build to those building objects, I made sure the UI reflected that.

Mixle

Mixle is finished!

Mixle is a game of merging different coloured blocks together to create new blocks with new shapes and new colours. The merging animation isn’t quite perfect, there are some occasional complicated merges which won’t quite right, but it’s otherwise fully functional.

There are twenty levels in total and you can play it here:

http://www.stoogoff.com/games/ld35/

Mixle Home Screen Mixle Level One Mixle Level Three A Mixle Level Three B Mixle Level Three C

DNA Madness almost done!

Now I only need to make a couple of levels and my first game will be done!

screen04 screen05 screen06 screen07

Comments

funisfun8
17. Apr 2016 · 23:44 UTC
And fix DragRonfly :) Unless it’s intentional.
OveRMolo
18. Apr 2016 · 08:02 UTC
Thank you funisfun8, it’s a mistake 😉

*Almost* Had This One…

It doesn’t look like I’m going to make the deadline for the compo, but I’m going to keep going and try to have something publishable for the 72 hour jam. Congratulations to all you superstars who made the deadline!

 

Our_Hero

Extremely Close, Don’t Know If I’ll Finish

I’m extremely close to finishing my game, but between the couple hours Scratch and me not being very motivated, I don’t know if I’ll be able to finish my game in an hour. We can hope.

Wazzzaapp?

So yeah, finished my compo entry, hopefully going to make a jam entry which just improves on the current game.

It has 10 levels total, and it’s really a simple game of experimenting.  You can play rock, paper, and scissors (represented by colors), and you just have to figure out how to use each.

Have fun, leave a vote or comment, don’t rage quit.

Ludum Dare 35

Unfinished, but my Game is Submitted

It turns out that I won’t be able to finish my game in time. Unfortunately I was a little over-ambitious again. There is still a lot that I need to work in but at the same time I am sorta proud of what I have created up to this point so I plan on completing it within the next few weeks regardless.

Here is the link if you’re interested: http://ludumdare.com/compo/ludum-dare-35/?action=preview&uid=39681

Crazy Jam entry – Shape-shifting alien race versus another aliens

Still work in progress, most of game mechanics are done – and as I’m running for Jam, it will most likely get there. A little image show follows.

I’m running for tower defense/strategy in Unity with (literally) tons of programmer’s art, that will put some pressure on player and of course winning the game is not an option, only losing faster or slower.