What's everyone working on? (tigsource inspired)

General discussion about LÖVE, Lua, game development, puns, and unicorns.
User avatar
StoneCrow
Party member
Posts: 199
Joined: Sat Apr 17, 2010 9:31 am
Location: Wales the land of leeks and leaks
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by StoneCrow »

Finishing writing an object orientated ( kinda ) map engine and a mapmaker for that hopefully using procedurally aligned chunks of map to create large linear maps.
Dull but sincere filler.
User avatar
adnzzzzZ
Party member
Posts: 305
Joined: Sun Dec 26, 2010 11:04 pm
Location: Porto Alegre, Brazil

Re: What's everyone working on? (tigsource inspired)

Post by adnzzzzZ »

User avatar
StoneCrow
Party member
Posts: 199
Joined: Sat Apr 17, 2010 9:31 am
Location: Wales the land of leeks and leaks
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by StoneCrow »

Here's a shot of that map engine, it's still early days and I'm definitely going to be using it for my next game in a big way!
ow_gridify01.png
ow_gridify01.png (24.59 KiB) Viewed 5058 times
Okay so whats going on here you ask?
well the mapper is displaying a small 3x3 map, currently the only non-automatic part is the positioning and rotation of tiles onto the map ( that's where the mapmaker comes in next ), the tiles are cropped automatically into a reference table within the maps namespace and the tiles are placed and drawn automatically onto the grid with functions also!

Code: Select all

imagesheetreference = love.graphics.newImage("basic.png") -- grabbing the image

map = require "ow_grid" -- adding the functions to the map

map:setup(imagesheetreference,5,100,100) -- setting up the maps info and tile references

-- here is the last hand written difficult bit the positioning and map size, the editor will remove the need for this.
map:create(
	3,
	3,
	{
		{1,1,{4, r = 0}},
		{2,1,{3, r = 90}},
		{3,1,{4, r = 90}},
		{1,2,{3, r = 0}},
		{2,2,{1, r = 0}},
		{3,2,{3, r = 180}},
		{1,3,{4, r = 270}},
		{2,3,{3, r = -90}},
		{3,3,{4, r = 180}},
	}
)

function love.draw()
	 map:draw(100,100) -- where the map section is drawn
end
I was going to use images to place map parts but since the main use is for top down or orthogonal it would be a massive pain to support image rotation with the single reference image format without hugely over complicating it.

I have sat down and started to write mapmakers before but hit problems with my map format, I really like this one so as long as money problems don't start cropping up I will hopefully be able to finish this one!
Dull but sincere filler.
User avatar
tepaterf
Prole
Posts: 5
Joined: Fri Jan 11, 2013 7:42 pm

Re: What's everyone working on? (tigsource inspired)

Post by tepaterf »

I started working on my Columns game again. :>
ObxgFsN.gif
ObxgFsN.gif (613.75 KiB) Viewed 447 times
User avatar
raidho36
Party member
Posts: 2063
Joined: Mon Jun 17, 2013 12:00 pm

Re: What's everyone working on? (tigsource inspired)

Post by raidho36 »

Pony columns? Lol ok, nice. I would really like it having vector high resolution graphics though. Or at least make the cutie pieces have more distinct colors, like kindness is strikingly teal and generocity - white (sligthly blue). Also, make laughter piece have it's blob part larger.
User avatar
tepaterf
Prole
Posts: 5
Joined: Fri Jan 11, 2013 7:42 pm

Re: What's everyone working on? (tigsource inspired)

Post by tepaterf »

Thanks for the compliments. :> The pony pieces are just something I made for fun, and it will probably end up being a theme, or texture pack, in the future, since I wanna have that kind of system in place for multiplayer.
cpellens
Prole
Posts: 5
Joined: Wed Aug 07, 2013 4:21 am

Re: What's everyone working on? (tigsource inspired)

Post by cpellens »

This

Image
User avatar
CaptainMaelstrom
Party member
Posts: 161
Joined: Sat Jan 05, 2013 10:38 pm

Re: What's everyone working on? (tigsource inspired)

Post by CaptainMaelstrom »

vector high resolution graphics
raidho36: What? I was under the impression LÖVE only supports rasterized graphics??

But yeah tepaterf: it looks really cool. I got introduced to Columns late, but I played a ton of it with friends. Really fun party game.

Also, cpellens, that looks really cool. What's the resolution of one tile? 128x128? Looks really smooth, almost vector-like.
User avatar
SimonLarsen
Party member
Posts: 100
Joined: Thu Mar 31, 2011 4:47 pm
Location: Denmark
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by SimonLarsen »

Lukas and I have been working on a small project to kill time.
We posted some screenshots here yesterday:
http://tangramgames.dk/2013/08/10/sss.html
Image
Post Reply

Who is online

Users browsing this forum: No registered users and 79 guests