Search found 6 matches

by paserra
Sun Feb 16, 2020 9:30 pm
Forum: Ports
Topic: UDP Sockets not working on Android platform
Replies: 2
Views: 41889

Re: UDP Sockets not working on Android platform

Thank you pgimeno, the address 0.0.0.0 works on Android!
The datagrams are received normally!
by paserra
Sat Feb 15, 2020 8:23 am
Forum: Ports
Topic: UDP Sockets not working on Android platform
Replies: 2
Views: 41889

UDP Sockets not working on Android platform

Hi, I'm trying to work with UDP sockets on Android. The following code works very well in the Windows version. Do you have some suggestions for porting the code to Android? Thank you, Pier Andrea. local socket = require "socket" local address, port = "localhost", 12345 local data...
by paserra
Wed Aug 20, 2014 3:50 pm
Forum: Support and Development
Topic: Lua51.dll and Lua5.1.dll
Replies: 0
Views: 1927

Lua51.dll and Lua5.1.dll

Hi, I've tried to use luars232 lib with Love2d (0.9.1) but I had problems with the lua51.dll. I've changed it with two dlls I've found over net (Lua51.dll+Lua5.1.dll) and I've solved the problem. I think that Lua5.1.dll simply redirect the calls to Lua51.dll. I've tried to use LuaJIT lib 2.0.2 (just...
by paserra
Wed Aug 20, 2014 2:29 am
Forum: Support and Development
Topic: Multi-Agent based Simulation
Replies: 3
Views: 2450

Re: Multi-Agent based Simulation

Hi Chicony,
I'm very interested in you idea.It is possible we can do something together.
Regards,
Pier Andrea.
by paserra
Sun Aug 17, 2014 2:57 am
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 352238

Re: Löve Frames - A GUI Library

Ops, I've found just now a very simple and elegant solution already implemented in the Löve Frames Library (I do not have to reinvent the wheel)! local myPanel = loveframes.Create("panel") myPanel.Draw = function(object) love.graphics.setColor(255, 0, 0, 255) love.graphics.rectangle("...
by paserra
Sun Aug 17, 2014 2:37 am
Forum: Libraries and Tools
Topic: Löve Frames - A GUI Library
Replies: 406
Views: 352238

Re: Löve Frames - A GUI Library

Hello, I'm new in this forum and I'll be glad to say thank you to all of you for your passion and your coding efforts. I've started to code in LUA from one week and to use Löve from 3 days and I consider this programming language powerful and funny and the Löve implementation genial. Thank you also ...