Search found 161 matches

by TsT
Tue Apr 26, 2011 10:08 pm
Forum: Support and Development
Topic: fakelove : love in pure lua
Replies: 11
Views: 8542

Re: fakelove : love in pure lua

Done:
- provide a love.event emulation
- provide a love.timer emulation (for dt calculation)

Now fakelove 0.2 is able to manage events, and quit properly !
by TsT
Tue Apr 26, 2011 9:56 pm
Forum: Support and Development
Topic: symlink not supported ?
Replies: 15
Views: 7461

Re: symlink not supported ?

I need symlink for personnal development use. I build my own symlink and I don't be afraid of myself :ultraglee: You speak about security and sandboxing ... when os.remove(), io.open and loadstring and are available ? If we have a love.filesystem.isSymlink(file) and/or love.filesystem.getSymlinkTarg...
by TsT
Tue Apr 26, 2011 2:15 pm
Forum: Support and Development
Topic: symlink not supported ?
Replies: 15
Views: 7461

Re: symlink not supported ?

It's a default by the lib we use for love.filesystem, and we see no reason to set it to allow symlinks. And I don't understand why... symlink are so usefull ! Maybe hardlinking is an alternative here? Not really. hardlinking directories is not a good idea, and hardlinking every files are boring (an...
by TsT
Tue Apr 26, 2011 11:59 am
Forum: Support and Development
Topic: String_exploding improvement
Replies: 16
Views: 7657

Re: String_exploding improvement

That makes the 'or false' bit pointless. You could also express it like this self:find(pat, 1, plain ~= nil or true) But by this way I got always true, even I choose plain = true > function x(plain) return plain ~=nil or true end > = x(false) true we want : plain = nil => true (the default value, w...
by TsT
Tue Apr 26, 2011 11:43 am
Forum: Support and Development
Topic: Need help to emulate love.event.poll()
Replies: 2
Views: 1253

Need help to emulate love.event.poll()

Hello, To continue my fakelove project, I need to implement the love.event. My goal is to load the internal code of love (boot.lua), so I can not modify the way to made the loop. The sample call code is : for e,a,b,c in love.events.poll() do if e == "q" then -- Quit! end end So I need to d...
by TsT
Tue Apr 26, 2011 11:25 am
Forum: Support and Development
Topic: symlink not supported ?
Replies: 15
Views: 7461

symlink not supported ?

Hello, I understand the symlink inside zip file (.love file) was not supported (and it's not my problem). My problem went I'm running love for development like : love mydirectory/ symlink are reallly usefull to have a tree like : common/lib/ -- where every lua and love lib are available project1/ --...
by TsT
Tue Apr 26, 2011 11:13 am
Forum: Support and Development
Topic: String_exploding improvement
Replies: 16
Views: 7657

Re: String_exploding improvement

I've added the ability to use plain text (see the split function ) and noted your help in the README. Note that by using the division operator, it will default to plain text. Use split for patterns. Thanks to you! I see, it's good but I wonder if it's a good idea to have 2 different default one wit...
by TsT
Tue Apr 26, 2011 8:53 am
Forum: Support and Development
Topic: String_exploding improvement
Replies: 16
Views: 7657

Re: String_exploding improvement

I got problem to made exactly what I have in mind... but nevermind! BlackBulletIV I really like your strong library ! Don't you want put it on the wiki Libraries page ? I suggest you a small change to allow spliting with plain text (not regexp) I prefer default matching as plaintext but the regexp m...
by TsT
Tue Apr 26, 2011 8:28 am
Forum: Libraries and Tools
Topic: LUBE (Networking Library)
Replies: 332
Views: 225704

Re: LUBE (Networking Library)

Great, Thanks!!

I'm also added the link directly in the LUBE and LUBE (Français) pages.
by TsT
Tue Apr 26, 2011 8:09 am
Forum: Support and Development
Topic: Cameras in Love2D (Tutorials)
Replies: 22
Views: 12810

Re: Cameras in Love2D (Tutorials)

Good! Tuto and sample are really welcome ! :D