Search found 60 matches

by ac3raven
Sat Jun 16, 2018 4:23 am
Forum: Support and Development
Topic: [Solved]Using a timer to iterate through a table
Replies: 1
Views: 1648

[Solved]Using a timer to iterate through a table

I have a player table. Inside that player table is multiple "horse" tables. The horses are lined up by offsetting their x position based on the x of the previously added horse. When the player jumps, I need the lead horses to jump in sequence from the lead horse to the last horse, such tha...
by ac3raven
Wed Jul 30, 2014 12:24 am
Forum: Support and Development
Topic: Very strange pathfinding issue (Jumper)
Replies: 3
Views: 2318

Re: Very strange pathfinding issue (Jumper)

I subtract 1 from y and x in the two functions where it's appropriate (Obstacle:draw() and Obstacle:collision_load()), and I am still getting similar pathing issues. See screenshot. https://imgur.com/d1YMAim This is the code that generates a map: nx,ny = 14,14 local scale = 1/love.math.random(4,6) l...
by ac3raven
Tue Jul 29, 2014 12:24 am
Forum: Support and Development
Topic: Very strange pathfinding issue (Jumper)
Replies: 3
Views: 2318

Very strange pathfinding issue (Jumper)

I am using Jumper for path-finding in my game. The game features a random-level generator that produces tile-based obstacles. I am having a very strange issue with the discovered paths. see screenshot: https://imgur.com/jQvdUZZ I thought it might be an offset issue, but there's nothing out of the or...
by ac3raven
Sat Mar 22, 2014 1:03 am
Forum: Support and Development
Topic: Reading from a Tiled map and printing values
Replies: 1
Views: 1443

Reading from a Tiled map and printing values

So I made a 2-layer map in Tiled and exported the lua file so that STI could handle it. I am trying to read the value of each position in the obstacle table, and print each value. Simple right? Apparently not for me. :( Here's a sample of what I've tried: for x,y in pairs (map.layers.obstacle.data) ...
by ac3raven
Wed Dec 04, 2013 7:01 pm
Forum: Support and Development
Topic: Guidance for path-finding with ATL and ATC
Replies: 16
Views: 9499

Re: Guidance for path-finding with ATL and ATC

I have reached an impasse. I can't seem to figure out how to draw the path that is being calculated, and I also don't know why the enemy's movement is so wonky. I suspect it's because I'm doing the pathfinding incorrectly as well as the movement, but I don't know what I'm doing wrong. the previously...
by ac3raven
Wed Dec 04, 2013 1:46 am
Forum: Support and Development
Topic: Guidance for path-finding with ATL and ATC
Replies: 16
Views: 9499

Re: Guidance for path-finding with ATL and ATC

Thanks Roland. People on the IRC channel helped me figure this out. I'm making progress!

Nothing truly works yet, but I got an enemy to spawn and move toward the player in a very buggy way that makes little sense. But that's much better than whee I was a few days ago.
by ac3raven
Tue Dec 03, 2013 7:24 pm
Forum: Support and Development
Topic: Guidance for path-finding with ATL and ATC
Replies: 16
Views: 9499

Re: Guidance for path-finding with ATL and ATC

I've made some progress implementing jumper in a fresh game (I think), but I'm running into a problem where when I launch the game, and it errors out with "invalid location".

I'm not sure why. I based much of the code off the demo that Roland linked to.
by ac3raven
Sun Dec 01, 2013 4:07 pm
Forum: Support and Development
Topic: Guidance for path-finding with ATL and ATC
Replies: 16
Views: 9499

Re: Guidance for path-finding with ATL and ATC

local map = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
by ac3raven
Sun Dec 01, 2013 3:14 pm
Forum: Support and Development
Topic: Guidance for path-finding with ATL and ATC
Replies: 16
Views: 9499

Re: Guidance for path-finding with ATL and ATC

FYI Roland, a lot of the links in your readme file (and perhaps elsewhere) don't work. They all go straight here:

https://github.com/Yonaba/Jumper