Hey guys, I made a game for the Adventure Time Game Jam this weekend, you can find it here- http://www.adventuretimegamejam.com/submissions/85
To make this game, I created a bit of a "mini-game engine" to create new mini-games with a small table of information. Feel free to unzip and take a look at how it operates. It's not the cleanest code (and not commented due to jam time), but I might create a new framework out if later.
Enjoy!
Adventure Time Game Jam game
- TylertheDesigner
- Citizen
- Posts: 80
- Joined: Sat Apr 10, 2010 2:27 am
Re: Adventure Time Game Jam game
You only have there an assembled exe which is nasty for Linux or OSX users like me. I had to go to XP only for made a love from .exe. I didn't posted it here because I don't know if you mind.TylertheDesigner wrote:Hey guys, I made a game for the Adventure Time Game Jam this weekend, you can find it here- http://www.adventuretimegamejam.com/submissions/85
To make this game, I created a bit of a "mini-game engine" to create new mini-games with a small table of information. Feel free to unzip and take a look at how it operates. It's not the cleanest code (and not commented due to jam time), but I might create a new framework out if later.
Enjoy!
About the game all seems graphically cool but is really a weird game. I don't even know if I'm playing it right. Levels change so quickly and I don't understand if I died or succeed. Things just keep changing on and on...
- Roland_Yonaba
- Inner party member
- Posts: 1563
- Joined: Tue Jun 21, 2011 6:08 pm
- Location: Ouagadougou (Burkina Faso)
- Contact:
Re: Adventure Time Game Jam game
Arts are damn cool. Nothing to say about that.
Love the retro-style, too.
But I don't understand the gameplay...I'm just typing my arrows, until I get the screen "Lose"...
Any chance to have a *.love file, so that everybody can see the sources ?
And well, I don't like the resolution. Just start with the usual 800x600, and maybe add some scaling or a fullscreen option for thosewho need it...
Love the retro-style, too.
But I don't understand the gameplay...I'm just typing my arrows, until I get the screen "Lose"...
Any chance to have a *.love file, so that everybody can see the sources ?
And well, I don't like the resolution. Just start with the usual 800x600, and maybe add some scaling or a fullscreen option for thosewho need it...
Re: Adventure Time Game Jam game
Quite addictive game . Nice graphics.
LOVE extract command for Linux users:
LOVE extract command for Linux users:
Code: Select all
tail -c +2990080 AdventureTime.exe > AdventureTime.love
- Roland_Yonaba
- Inner party member
- Posts: 1563
- Joined: Tue Jun 21, 2011 6:08 pm
- Location: Ouagadougou (Burkina Faso)
- Contact:
Re: Adventure Time Game Jam game
What's the tail's -c option for, linuxers ?jonyzz wrote: LOVE extract command for Linux users:Code: Select all
tail -c +2990080 AdventureTime.exe > AdventureTime.love
Pretty sure the same result can be achieved on Windows with PowerShell's Get-Content command. Dunno how though.
Code: Select all
PS Path_to_exe (???)| set-content Path_to_love
Re: Adventure Time Game Jam game
I use 7zip on Windows and I can obtain the content of the .love (but not the .love itself) by trying to extract the bundled .exe
lf = love.filesystem
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
ls = love.sound
la = love.audio
lp = love.physics
lt = love.thread
li = love.image
lg = love.graphics
Re: Adventure Time Game Jam game
-c N ... output the last N bytesRoland_Yonaba wrote:What's the tail's -c option for, linuxers ?
-c +N ... output bytes starting with the Nth (I used N = size of LOVE exe file)
Re: Adventure Time Game Jam game
Though it is annoying to have to do this manually this works on OS X too for those wondering.
Well, it lasted about 10 seconds into the gameplay
http://cl.ly/image/122y1j0g0e3g
What I did see though was fun. I'll give it another go but if it crashes I'll wait for a fix
Beemo <3
EDIT: Tried a few 'gauntlets'. The controls seem kind of unresponsive. I'm not sure if it's a framerate issue or not, but it definitely seemed difficult to control. Other than that, I like the WarioWare style gameplay. It would be nice to see the intro descriptions for more than a millisecond!
EDIT2: You can also rename the exe to .love and it runs.
Well, it lasted about 10 seconds into the gameplay
http://cl.ly/image/122y1j0g0e3g
What I did see though was fun. I'll give it another go but if it crashes I'll wait for a fix
Beemo <3
EDIT: Tried a few 'gauntlets'. The controls seem kind of unresponsive. I'm not sure if it's a framerate issue or not, but it definitely seemed difficult to control. Other than that, I like the WarioWare style gameplay. It would be nice to see the intro descriptions for more than a millisecond!
EDIT2: You can also rename the exe to .love and it runs.
Do you recognise when the world won't stop for you? Or when the days don't care what you've got to do? When the weight's too tough to lift up, what do you? Don't let them choose for you, that's on you.
- Roland_Yonaba
- Inner party member
- Posts: 1563
- Joined: Tue Jun 21, 2011 6:08 pm
- Location: Ouagadougou (Burkina Faso)
- Contact:
Re: Adventure Time Game Jam game
Okay thanks. So, the same result can be achieved through lua. I'm using lua's native IO facilities, so don't try to run it with Love, install lua instead.jonyzz wrote:-c N ... output the last N bytesRoland_Yonaba wrote:What's the tail's -c option for, linuxers ?
-c +N ... output bytes starting with the Nth (I used N = size of LOVE exe file)
Code: Select all
-- Different x86 love.exe's sizes
local love080 = 2990080
local love072 = 2544128 --2547712
local love071 = 2548736
local love070 = 2554880
local love062 = 2571264
local love050 = 1531904
local exe_name = 'any_game.exe'
local file = io.open(exe_name,'rb')
print('seeking to position',file:seek("set",love080)) -- if packaged with Love080
local love_data = file:read('*a')
file:close()
local love_name = exe_name:gsub('(%.exe)$','.love')
local love_file = io.open(love_name,'wb')
love_file:write(love_data)
love_file:close()
print(('File %s written!'):format(love_name))
Re: Adventure Time Game Jam game
I do exactly the same when people forget to post a source!Nixola wrote:I use 7zip on Windows and I can obtain the content of the .love (but not the .love itself) by trying to extract the bundled .exe
@Lafolie You know I'm in OSX too right? I hadn't errors but I actually felt I had no control playing it... Game starts and ends too fast. Was/is weird.
Who is online
Users browsing this forum: No registered users and 1 guest