LOVE 0.5 Mac with working .love access
Forum rules
Before you make a thread asking for help, read this.
Before you make a thread asking for help, read this.
Re: LOVE 0.5 Mac with working .love access
Hm...even when i save it as .lua from the beginning, it doesn't work.
But - then i get no error when starting the new .love Archive, instead the Script itself doesn't even start, i just see in the Dock that Love is running...
But - then i get no error when starting the new .love Archive, instead the Script itself doesn't even start, i just see in the Dock that Love is running...
Re: LOVE 0.5 Mac with working .love access
smrx: (and anybody else wanting to know) to be able to use Mac OS X's TextEdit to write code or script (of any kind), it needs to be in Plain Text mode. To switch modes you go to the Format menu and select "Make Plain Text" or "Make Rich Text". (The menu option changes depending on which of the two modes of operation you're currently in.)
Re: LOVE 0.5 Mac with working .love access
I love Löve on OS X. There are a couple of idiosyncrasies, but I'd be happy to help in whatever capacity I can. So far I'm just tickled. For those other OS X users out there. To launch your project, I'm using the terminal this way:
To create a .love file do this:
I'm looking into what it takes to create a stand-alone binary distribution, but that is lower on my list of things to do that... playing with Löve! Super work!
Oh, and I recommend TextWrangler or TextMate for editing your files. Both are full of awesomeness.
Code: Select all
$ open -a love ~/Proj/Löve/MyTest/
Code: Select all
$ ditto -c -k -X MyTest MyTest.love
Oh, and I recommend TextWrangler or TextMate for editing your files. Both are full of awesomeness.
Re: LOVE 0.5 Mac with working .love access
I had a problem launching my applications and found a "problem" with the way ZIP files were created on the Mac, I hope this quick explanation can be useful:codonnell wrote:To create a .love file do this:Code: Select all
$ ditto -c -k -X MyTest MyTest.love
I just discovered Löve today (from Reddit) and you have to tweak the ZIP file with Löve 0.5 if you want the .love file to work.
For example, if I decompress a file and recompress it (with a right-click on the folder), it will be broken because the structure inside the ZIP file will have changed. If you want the .love file to work, I discovered that the main.lua file must not be inside a subdirectory (which is sadly the default behaviour if you right-click on the folder and ask to "Compress the folder.")
Here is an example, before (it's working ):
Code: Select all
$ unzip -l myhamsterball.love
Archive: myhamsterball.love
Length Date Time Name
-------- ---- ---- ----
10854 01-24-08 03:09 hamster.png
648 03-23-08 18:34 main.lua
92 03-23-08 18:34 game.conf
-------- -------
11594 3 files
Code: Select all
$ unzip -l myhamsterball.love
Archive: myhamsterball.love
Length Date Time Name
-------- ---- ---- ----
0 01-30-09 10:40 myhamsterball/
92 03-23-08 18:34 myhamsterball/game.conf
10854 01-24-08 03:09 myhamsterball/hamster.png
648 03-23-08 18:34 myhamsterball/main.lua
-------- -------
11594 4 files
You must either use loveMaker (I haven't tried it yet but it's mentioned in the forum) or use the appropriate command in the Terminal, something like:
Code: Select all
cd myhamsterball/
zip ../myhamsterball.love *
Code: Select all
cd myhamsterball/
zip -r ../myhamsterball.love *
I hope it's clearer now for those who use a Mac...
Re: LOVE 0.5 Mac with working .love access
I note that the original post indicates that this doesn't work well with Tiger (10.4). I can confirm that-- seems to be a problem with physfs referencing some symbol in a 10.4 library.
Has anyone worked around or solved this?
Has anyone worked around or solved this?
Re: LOVE 0.5 Mac with working .love access
http://love2d.org/docs/GameDistribution.html should be updated with instructions for OSX:
cp -R /Applications/love.app mygame.app; cat file.love >> mygame.app/Contents/MacOS/love
Re: LOVE 0.5 Mac with working .love access
@ tmm1: does that actually work? Will the embedded game run?
Re: LOVE 0.5 Mac with working .love access
I rebuilt physfs from sources, and now games run on my 10.4klopfer wrote:I note that the original post indicates that this doesn't work well with Tiger (10.4). I can confirm that-- seems to be a problem with physfs referencing some symbol in a 10.4 library.
Has anyone worked around or solved this?
Re: LOVE 0.5 Mac with working .love access
Could you perhaps post or send a link to the physfs library for 10.4?
Re: LOVE 0.5 Mac with working .love access
I wonder if it works by just selecting the X items thats supposed to be in the ZIP and right click "compress X items". It shouldn't have a subdirectory that way, theoretically speaking.
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot], Semrush [Bot] and 6 guests