Omnimaga
Calculator Community => Other Calc-Related Projects and Ideas => TI-Nspire => Topic started 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!
-
Interesting. I would like a video :D
-
hey perfect
waiting for its first release
-
Sounds nice, can't wait for the vid :)
-
Nice :D
Can't wait for it :p
-
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
-
is that vid corrupted? vlc fails to play it :(
-
try windows media player
-
ew, windows, also, i am on linux ;)
-
The vid worked in v1.0.3, how many levels is the game going to be?
-
banshee might show it but if it doesnt then convert the video
it plays well for me
-
@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.
-
Windows Media Player fails too :(
-
-
Ah, thank you, looking awesome so far :)
-
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)
-
I like it that the graphics are so simple :)
-
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)
-
Looking awesome!
Also, can you have more than two portals on the screen at the same time?
-
I havent done that yet, but its planned :)
-
Very nice game :)
-
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!
-
@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 :
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 :)
-
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 :)
-
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
-
This is pretty cool, good work! Wish I had an nSpire... :P
-
Really good project!
A little problem though: the cube falls faster when moving right or left.
-
Thanks for the heads up
Unfortunately, this project is done for now, and I'm not sure if it will ever pick back up