Search found 2058 matches

by raidho36
Thu Jan 30, 2020 11:55 am
Forum: Support and Development
Topic: Can love.filesystem.read skip custom linebreaks?
Replies: 12
Views: 6342

Re: Can love.filesystem.read skip custom linebreaks?

The short answer is no. The long answer is that you can't ignore "enter" keys but still read "\n" signs because enter keys create "\n" signs. The general answer is that your question makes no sense. The elaborate answer is that when enter key is pressed, a newline seque...
by raidho36
Wed Jan 29, 2020 9:10 am
Forum: Support and Development
Topic: Trouble returning tables from a separate file
Replies: 3
Views: 2773

Re: Trouble returning tables from a separate file

Just use "map2" instead. Or give it some appropriate name like "parameters".
by raidho36
Mon Jan 27, 2020 9:30 pm
Forum: Libraries and Tools
Topic: saferlove: Use encrypted and signed lua files
Replies: 5
Views: 11501

Re: saferlove: Use encrypted and signed lua files

Now we can just point people to this project and let them obtain common wisdom the hard way.
by raidho36
Sun Jan 26, 2020 5:25 pm
Forum: Support and Development
Topic: event.quit() [solved]
Replies: 5
Views: 3277

Re: event.quit()

No. It's something like this:

Code: Select all

function love.quit ( )
...
return true
end
It shouldn't return anything, or it may return nil or false, to actually quit. Returning anything else will cancel the quit.
by raidho36
Sun Jan 26, 2020 4:31 pm
Forum: Support and Development
Topic: IntelliJ or Zerobrane?
Replies: 8
Views: 5782

Re: IntelliJ or Zerobrane?

zorg wrote: Sun Jan 26, 2020 8:25 am To some people, integrated debugging facilities, variable watching, integrated consoles are something they want to have.
VSCode supports those, as any decent text editor should. IDK maybe on Windows it's an oddity you needed to use IDE for, but Linux editors had those features for ages.
by raidho36
Sun Jan 26, 2020 1:52 am
Forum: Support and Development
Topic: Is it possible to build an encrypted .exe?
Replies: 6
Views: 4209

Re: Is it possible to build an encrypted .exe?

People don't do this out of practical necessity, they do it because they're having a protracted brain fart. There are never seem to be any shortage of people who think that each of their individual pieces of work is valuable. Most of them understand that it's not the case once they start actually ma...
by raidho36
Sun Jan 26, 2020 1:44 am
Forum: Support and Development
Topic: IntelliJ or Zerobrane?
Replies: 8
Views: 5782

Re: IntelliJ or Zerobrane?

A lot of people don't use any IDE whatsoever. Those are extremely heavyweight and 100% of their useful functionality already exist in regular text editors, such as Visual Studio Code. Which is to say, there are no advantages to use any IDE, much less any specific one.
by raidho36
Sat Jan 25, 2020 5:50 pm
Forum: Support and Development
Topic: Is it possible to build an encrypted .exe?
Replies: 6
Views: 4209

Re: Is it possible to build an encrypted .exe?

It's definitely possible but it's more trouble than its worth. Consider how much time and effort you'd have to spend to do this, and if it outweighs the bad things that will happen if someone sees the code. Like, break out a calculator and try to really do the math on that one, put it in the numbers.
by raidho36
Sat Jan 25, 2020 4:28 pm
Forum: Games and Creations
Topic: Fakeman, a ghetto pacman clone
Replies: 9
Views: 12475

Re: Fakeman, a ghetto pacman clone

Some of the pellets are inaccessible. You resolve this by finding all "islands" and making sure that there's only one of it, by breaking some walls between separate islands.
by raidho36
Wed Jan 22, 2020 5:44 pm
Forum: Games and Creations
Topic: Fakeman, a ghetto pacman clone
Replies: 9
Views: 12475

Re: Fakeman, a ghetto pacman clone

It would be nice if it played a bit more like OG pacman, i.e. the character never stops and the walls are thin plates instead of solid bricks, and the ghosts are somewhat trying to catch you so you need to use powerups (and strategically too). With a bit of effort an infinite version could be made, ...