Search found 202 matches

by AntonioModer
Thu Jan 12, 2017 10:21 pm
Forum: Support and Development
Topic: Update physics World in another Thread
Replies: 11
Views: 10623

Re: Update physics World in another Thread

I found the main critical problem.
Functions in http://www.love2d.org/wiki/World:setCallbacks works only in one thread and they cant pass to another.
Same for http://www.love2d.org/wiki/Fixture:setUserData and http://www.love2d.org/wiki/Body:setUserData if userData is table or function (pointer).
by AntonioModer
Wed Sep 14, 2016 8:22 pm
Forum: Libraries and Tools
Topic: 2D Navmesh
Replies: 8
Views: 9904

Re: 2D Navmesh

I found interesting code, wich help me build navmesh, thanks to Alexar:
https://github.com/AlexarJING/box2dhelp ... 187e299726

Image
by AntonioModer
Wed Sep 14, 2016 1:29 pm
Forum: Libraries and Tools
Topic: Alexar's Physics Editor(APE)
Replies: 59
Views: 63317

Re: [lib] Box2D Helper

Alexar wrote:new update: destructible terrain.
WOW OoO
I will try use this in my 2d navmesh: viewtopic.php?f=5&t=81229#p203666
by AntonioModer
Tue Sep 13, 2016 8:01 am
Forum: Libraries and Tools
Topic: Alexar's Physics Editor(APE)
Replies: 59
Views: 63317

Re: [lib] Box2D Helper

Alexar, keep doing, don't stop, cool :)
by AntonioModer
Mon Sep 12, 2016 4:36 pm
Forum: Libraries and Tools
Topic: sandsmas - A LÖVE Editor
Replies: 20
Views: 40349

Re: sandsmas - A LÖVE Editor

EntranceJew, keep going please, don't stop, awesome !!! :awesome:
by AntonioModer
Wed Sep 07, 2016 7:58 pm
Forum: General
Topic: hotline miami?
Replies: 15
Views: 10412

Re: hotline miami?

Yes it is possible, but hard.
I make top down shooter like Hotline:

Image
by AntonioModer
Wed Sep 07, 2016 7:45 pm
Forum: General
Topic: Curve editor (Third-party software, not LOVE)
Replies: 2
Views: 3929

Re: Curve editor (Third-party software, not LOVE)

[update] Exported file format
by AntonioModer
Sun Sep 04, 2016 2:06 pm
Forum: Support and Development
Topic: Update physics World in another Thread
Replies: 11
Views: 10623

Re: Update physics World in another Thread

Found multithreading C++ Box2d library: https://github.com/skitzoid/Box2D-MT
by AntonioModer
Tue Aug 30, 2016 9:48 am
Forum: Support and Development
Topic: Update physics World in another Thread
Replies: 11
Views: 10623

Re: Update physics World in another Thread

The problem is that checking "isLocked" is not enough, as right after you "ask" whether it is locked, the other thread may also check and then both are still attempting to do stuff at the same time. You will need to use Channel:supply/demand to actually lock threads while workin...