Omnimaga

Calculator Community => Other Calc-Related Projects and Ideas => TI-Nspire => Topic started by: LDStudios on December 06, 2013, 06:41:40 pm

Title: Jumping Squares 2
Post by: LDStudios on December 06, 2013, 06:41:40 pm
This week, i began work on a sequel to jumping squares.
Jumping Squares 2, is primarily a puzzle/platformer, but I will probably include another game mode that will be more similar to the original.

Features:
Jumping Squares! (duh)
Trampolines
Spikes
Buttons
Doors
Much, much more! :D

(http://img.ourl.ca//js2.jpg)

I will attatch a video of gameplay as soon as I can!
Title: Re: Jumping Squares 2
Post by: DJ Omnimaga on December 06, 2013, 07:36:55 pm
Interesting. I would like a video :D
Title: Re: Jumping Squares 2
Post by: The_King on December 06, 2013, 10:39:39 pm
hey perfect

waiting for its first release
Title: Re: Jumping Squares 2
Post by: Sorunome on December 07, 2013, 04:45:40 am
Sounds nice, can't wait for the vid :)
Title: Re: Jumping Squares 2
Post by: AnToX98 on December 07, 2013, 09:31:26 am
Nice :D
Can't wait for it :p
Title: Re: Jumping Squares 2
Post by: LDStudios on December 07, 2013, 03:20:27 pm
A short video of the first half of the tutorial is attatched
The video is bad quality, but the actual game runs a lot sooner
Once I have added more features, Ill upload another video
Let me know what you think! :D
Title: Re: Jumping Squares 2
Post by: Sorunome on December 07, 2013, 03:23:31 pm
is that vid corrupted? vlc fails to play it :(
Title: Re: Jumping Squares 2
Post by: The_King on December 07, 2013, 03:25:54 pm
try windows media player
Title: Re: Jumping Squares 2
Post by: Sorunome on December 07, 2013, 03:26:15 pm
ew, windows, also, i am on linux ;)
Title: Re: Jumping Squares 2
Post by: AssemblyBandit on December 07, 2013, 03:28:27 pm
The vid worked in v1.0.3, how many levels is the game going to be?
Title: Re: Jumping Squares 2
Post by: The_King on December 07, 2013, 03:28:50 pm
banshee might show it but if it doesnt then convert the video


it plays well for me
Title: Re: Jumping Squares 2
Post by: LDStudios on December 07, 2013, 03:45:45 pm
@Assembly Bandit
probably a lot of levels. the two in the video, are 2 out of 6 in the tutorial
After the tutorial there will be probably 7 or 8 levels with  5-10 stages (1 door per stage) each. And the levels will become much more complex and puzzley than the ones in the video.
Title: Re: Jumping Squares 2
Post by: Matrefeytontias on December 08, 2013, 08:21:41 am
Windows Media Player fails too :(
Title: Re: Jumping Squares 2
Post by: The_King on December 08, 2013, 01:45:48 pm
Title: Re: Jumping Squares 2
Post by: Sorunome on December 08, 2013, 01:47:32 pm
Ah, thank you, looking awesome so far :)
Title: Re: Jumping Squares 2
Post by: LDStudios on December 08, 2013, 04:28:50 pm
Hooray for keys, spikes and buttons!
(hopefully everyone can see it this time)
(and once again, excuse the poor video quality, the actual game runs much smoother)

Title: Re: Jumping Squares 2
Post by: Sorunome on December 09, 2013, 08:06:33 am
I like it that the graphics are so simple :)
Title: Re: Jumping Squares 2
Post by: LDStudios on December 09, 2013, 09:33:42 pm
Portals!



I've been posting a lot of progress videos so far, but that will slow down from here out.
Now that the tutorial is complete, so are most of the main features, therefore, there will not be much to show without giving away all of the levels.

(as usual, excuse the poor video quality. also, youtube seems to have cut short the video, in case you were wondering, the blue button causes the cage to disappear, freeing the red square inside)
Title: Re: Jumping Squares 2
Post by: Sorunome on December 10, 2013, 06:19:08 am
Looking awesome!

Also, can you have more than two portals on the screen at the same time?
Title: Re: Jumping Squares 2
Post by: LDStudios on December 10, 2013, 06:46:09 am
I havent done that yet, but its planned :)
Title: Re: Jumping Squares 2
Post by: AnToX98 on December 10, 2013, 11:07:34 am
Very nice game :)
Title: Re: Jumping Squares 2
Post by: LDStudios on December 11, 2013, 11:04:12 pm
Here is the tns for the tutorial of the game (it is still very early in, and most of the code will be rewritten)
It does work on 3.1
Let me know what you think!
Title: Re: Jumping Squares 2
Post by: AnToX98 on December 13, 2013, 11:59:48 am
@LDStudios

I tested your game, and I only can say one thing : awesome ! It's rare to find some creative and original platform games on nspire, and your game is unmistakably amazing !
To say the truth, I don't really liked JS1, but this one is so much fun :D

But to help you a little in developing your game :
- Make a menu, maybe with highscores (of coins you collect) and with a level selecting option, maybe, because just think : if you reach level 30, maybe you want to restart from beginning, or simply choose your level :).
- You may implement lives, because otherwise you cannot loose in your game :p
- Would be interesting to make a more fluent move of your cube, not a framemove : it is difficult to do but it is conceivable

Now on the code, just some points :

Code: [Select]
function setLevel() --set variables for level 1

    alive=1
   
    jump=4

x=1000

y=1000

cx=1000

cy=1000

c_collected=0

k=0

key=0

tx=1000

ty=1000

sx=1000

sy=1000

s2x=1000

s2y=1000

px=1000

py=1000

p2x=1000

p2y=1000

p3x=1000

p3y=1000

dx=1000

dy=1000

kx=1000

ky=1000

bx=1000

by=1000

b2x=1000

b2y=1000

bp=0

b2p=0

pox=1000

- Your map can be tilemapped, it means that every level can be stocked in a matrice (a list in lua) to make it more easy for developing levels.

Like that :

level1 = {
                 {0,0,0,0,1},
                 {2,3,2,0,0},
                 {2,4,3,1,2}
             }

And every number stands for a component :)
Title: Re: Jumping Squares 2
Post by: LDStudios on December 13, 2013, 12:33:23 pm
Yes, a menu is planned, with selectable levels (each level will be about as long as the tutorial you played, so you will not be able to choose the exact screen)

As far as highscores, there will be a time-attack mode with highscores for each level.
(coins will be for unlocking new graphics modes ex: Winter, or characters, not for highscores)

Lives however, are not planned, as the idea is more to implement difficult puzzles that take time and thought, rather than trying not to die.

Im not sure yet for sure whether I want fluid cube motions, because the buttons on the numpad  do not respond to being held down, and the arrowKeys on most nspires dont work that well. If the square moved only a few pixesl at a time, I can imagine how annoying it would be to mash the 4 and 6 buttons, because as it is its annoying to move your square all the way across the screen.

As far as your opinion on JS1, a reworking of that is also planned, with a much better script, as well as some major changes to the gameplay. I hope you'll like it better

And thank you for your level storing suggestion, I will see about implementing that :)
Title: Re: Jumping Squares 2
Post by: DJ Omnimaga on February 11, 2014, 09:41:15 am
This seems pretty fun to play. Also, since this seems to involve moving around, unlike The Impossible Game where you always move in the same direction, you could almost do some sort of Mario clone with this :P
Title: Re: Jumping Squares 2
Post by: ClrDraw on February 11, 2014, 10:25:34 am
This is pretty cool, good work! Wish I had an nSpire...  :P
Title: Re: Jumping Squares 2
Post by: mdr1 on June 02, 2014, 01:20:01 pm
Really good project!
A little problem though: the cube falls faster when moving right or left.
Title: Re: Jumping Squares 2
Post by: LDStudios on June 02, 2014, 01:36:13 pm
Thanks for the heads up
Unfortunately, this project is done for now, and I'm not sure if it will ever pick back up