Search found 4 matches

by jondoe
Fri Nov 04, 2011 9:29 pm
Forum: Support and Development
Topic: Reading map from file and displaying
Replies: 3
Views: 2978

Re: Reading map from file and displaying

Smaller map (5*5)
by jondoe
Fri Nov 04, 2011 8:49 pm
Forum: Support and Development
Topic: Reading map from file and displaying
Replies: 3
Views: 2978

Re: Reading map from file and displaying

Here's the complete .love archive.
by jondoe
Fri Nov 04, 2011 8:25 pm
Forum: Support and Development
Topic: Reading map from file and displaying
Replies: 3
Views: 2978

Reading map from file and displaying

I've been trying to read a map from a file and display it as an hexagonal tile map for hours now and I'm starting to give up. The file consists of linear string of bytes between 0x00 and 0xA0, mapWidth * mapHeight large. I'm trying to read it with mapWidth = 3600 mapHeight = 1800 print("Loading...
by jondoe
Sat Oct 22, 2011 2:10 pm
Forum: Libraries and Tools
Topic: Advanced Tiled Loader - No longer maintained
Replies: 260
Views: 185552

Re: Advanced Tiled Loader

Nergal, I think I found an error in your code, it didn't run together with the examples without it. :) if love.filesystem.exists(filename) and love.filesystem.isFile(filename) then on line 68 of Loader.lua should be if love.filesystem.exists(Loader.path .. filename) and love.filesystem.isFile(Loader...