Search found 111 matches

by ghoulsblade
Thu Nov 17, 2011 2:04 pm
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

debug/love.graphics.print : yeah, i hope i can fix it this weekend. you couuuuuuld make 26+10 small images a-z0-9 and override love.graphics.print to draw sprites if you're impatient XD network : from what i hear internet connections on smartphones are rather unstable, so don't count on it for "...
by ghoulsblade
Thu Nov 17, 2011 1:24 pm
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

font bug on devices is known, works in emu, we're working on it. list of supported api : no function-by-function list, but see "done" and "not yet working " sections on http://ghoulsblade.schattenkind.net/wiki/index.php/Love2d-android print : yeah, hard without setting up the and...
by ghoulsblade
Wed Nov 16, 2011 11:15 pm
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

devnews: http://ghoulsblade.schattenkind.net/love-android/love-android.apk love-android.apk * first experimental multi touch and generic sensor access available (untested), see readme at the bottom of https://github.com/hagish/love-android * hagish: audio available when playing from .love, sdcard wr...
by ghoulsblade
Wed Nov 16, 2011 8:41 pm
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

@SiENcE: let me be the judge of that please, i uploaded the apk so people can test it on different hardware, and getting feedback about what works and what doesn't for different android phones is already important. .ogg only once : i have an idea, but won't get round to it just yet. (MediaPlayer vs ...
by ghoulsblade
Mon Nov 14, 2011 9:56 pm
Forum: Libraries and Tools
Topic: Very basic, 2 button app (for android eventually)
Replies: 9
Views: 5939

Re: Very basic, 2 button app (for android eventually)

you're welcome, i'm glad it helps so much =)

2sounds : i think the love-android version is atm limited to max 4 sound buffers at the same time,
maybe they still count when there's long silence at the end of the sound ?
didn't really test it well yet, but i'll add more audio config api stuff later.
by ghoulsblade
Mon Nov 14, 2011 9:54 pm
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

i have a milestone now so i can debug fonts and other things on a device rather than emu =D not sure how to solve the no-sdcard issue, binaries are cryptographically signed afaik, so appending data like a .love at the end won't work directly. You'd need to create a pc program or php script on a serv...
by ghoulsblade
Mon Nov 14, 2011 2:02 pm
Forum: Libraries and Tools
Topic: Very basic, 2 button app (for android eventually)
Replies: 9
Views: 5939

Re: Very basic, 2 button app (for android eventually)

you can access the screen resolution with local screen_width = love.graphics.getWidth( ) local screen_height = love.graphics.getHeight( ) to test if the mouse is in the left half of the screen you can use function love.mousepressed(x, y, button) local screen_width = love.graphics.getWidth( ) if x > ...
by ghoulsblade
Mon Nov 14, 2011 10:08 am
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

beware that this love-android port is still rather experimental. the way to go for now would be get it to work on pc with mouse and without android first, e.g. make a main.lua which overrides http://love2d.org/wiki/love.draw to draws 2 images : a red-no on the left half of the screen, a green-yes on...
by ghoulsblade
Sun Nov 13, 2011 2:19 am
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

update : http://ghoulsblade.schattenkind.net/lov ... ndroid.apk
stubs for particlesystem and phyiscs, not visible, but should prevent crash in the majority of cases
by ghoulsblade
Sun Nov 13, 2011 12:06 am
Forum: LÖVE-Android
Topic: love-android: discussion
Replies: 150
Views: 84266

Re: love-android

update : http://ghoulsblade.schattenkind.net/love-android/love-android.apk it can play .love files without unpacking now, lists sdcard and downloads folder. sound doesn't work from .love file yet, we might need help with someone very experience in android sdk here, both MediaPlayer and SoundPool dem...