Adventure Time Game Jam game

Show off your games, demos and other (playable) creations.
User avatar
TylertheDesigner
Citizen
Posts: 80
Joined: Sat Apr 10, 2010 2:27 am

Adventure Time Game Jam game

Post by TylertheDesigner »

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!
coffee
Party member
Posts: 1206
Joined: Wed Nov 02, 2011 9:07 pm

Re: Adventure Time Game Jam game

Post by coffee »

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!
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.

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...
User avatar
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

Post by Roland_Yonaba »

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"... :x
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...
jonyzz
Prole
Posts: 48
Joined: Sun Sep 02, 2012 9:35 pm

Re: Adventure Time Game Jam game

Post by jonyzz »

Quite addictive game ^^. Nice graphics.

LOVE extract command for Linux users:

Code: Select all

tail -c +2990080 AdventureTime.exe > AdventureTime.love
User avatar
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

Post by Roland_Yonaba »

jonyzz wrote: LOVE extract command for Linux users:

Code: Select all

tail -c +2990080 AdventureTime.exe > AdventureTime.love
What's the tail's -c option for, linuxers ?

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
Any idea ?
User avatar
Nixola
Inner party member
Posts: 1949
Joined: Tue Dec 06, 2011 7:11 pm
Location: Italy

Re: Adventure Time Game Jam game

Post by Nixola »

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
jonyzz
Prole
Posts: 48
Joined: Sun Sep 02, 2012 9:35 pm

Re: Adventure Time Game Jam game

Post by jonyzz »

Roland_Yonaba wrote:What's the tail's -c option for, linuxers ?
-c N ... output the last N bytes
-c +N ... output bytes starting with the Nth (I used N = size of LOVE exe file)
User avatar
Lafolie
Inner party member
Posts: 809
Joined: Tue Apr 05, 2011 2:59 pm
Location: SR388
Contact:

Re: Adventure Time Game Jam game

Post by Lafolie »

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 :3

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.
User avatar
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

Post by Roland_Yonaba »

jonyzz wrote:
Roland_Yonaba wrote:What's the tail's -c option for, linuxers ?
-c N ... output the last N bytes
-c +N ... output bytes starting with the Nth (I used N = size of LOVE exe file)
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.

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))

coffee
Party member
Posts: 1206
Joined: Wed Nov 02, 2011 9:07 pm

Re: Adventure Time Game Jam game

Post by coffee »

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
I do exactly the same when people forget to post a source!

@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.
Post Reply

Who is online

Users browsing this forum: No registered users and 188 guests