Join us on Discord!
You can help CodeWalrus stay online by donating here.

Gateway to Legend [pc]

Started by 123outerme, October 15, 2017, 08:11:30 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

123outerme

Gateway to Legend is an open-source Puzzle-RPG. The main focus of the game will obviously be solving puzzles to get experience, as any Puzzle-RPG would have it, but the mechanics that make this game unique is that most puzzle mechanics will be based off doors or gates! Switches and door pairs allow you to gain access to rooms, teleporters provide gates between two places on the map, and more! It also supports the development and easy integration of user-generated content, as well; you can make puzzle map-packs for this project! I've done quite a bit of work on this engine so far, and I'd like to show it off. Here's what I have so far:

https://www.youtube.com/watch?v=Jqf-65WExY0
In this video, I show off the work I've done with enemies and pathfinding, music, and sound effects! Bosses, the toolchain, and abilities are also shown off!

There are 3 enemy types: Fast but low damage and HP moving straight to you, slow but higher damage and HP, taking a slower, more methodical path, and a third, which totally ignores collision.

There's also a map-pack wizard that helps user-generated content, as far as the programs go. I have my Github repository over here, and I would very much appreciate any suggestions from the community!

Other Stuff:
* Join my Discord! I post more frequent updates there.
* Take a look at my website I wrote!
* See my GameJolt Page!
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

gameblabla

I see that you are reusing a lot of your previous code from Sorcery PC.
In fact, it looks like you are instead attempting to revamp your old code rather than start from scratch.

Btw, you forgot to put the fonts from previous game in Gateway.

  • Calculators owned: None (used to own an Nspire and TI-89)

123outerme

Quote from: gameblabla on October 15, 2017, 08:59:09 PM
I see that you are reusing a lot of your previous code from Sorcery PC.
In fact, it looks like you are instead attempting to revamp your old code rather than start from scratch.

Btw, you forgot to put the fonts from previous game in Gateway.
Yeah I'm trying to reuse what worked and rework what didn't. No need to reinvent the square wheel on this one. I did forget to include the font in here, let me change that now.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

123outerme

https://www.youtube.com/watch?v=91QdFtowGN4

Here's my new progress! You can see that all the "event" tiles, or puzzle mechanics, are displayed onscreen. I also implemented button and door behaviors, with framework to do the same thing for each tile. I also did a lot of work on the map toolchain, making it so that each program can be compiled with the same header file(s), meaning no extra bloat in the build directory, among other changes like always displaying event tiles there too.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

Dream of Omnimaga

I like the idea so far and I definitively notice the inspiration from SoU. The graphics look cool together by the way.
  • Calculators owned: TI-82 Advanced Edition Python TI-84+ TI-84+CSE TI-84+CE TI-84+CEP TI-86 TI-89T cfx-9940GT fx-7400G+ fx 1.0+ fx-9750G+ fx-9860G fx-CG10 HP 49g+ HP 39g+ HP 39gs (bricked) HP 39gII HP Prime G1 HP Prime G2 Sharp EL-9600C
  • Consoles, mobile devices and vintage computers owned: Huawei P30 Lite, Moto G 5G, Nintendo 64 (broken), Playstation, Wii U

123outerme

Quote from: xlibman on October 20, 2017, 04:26:22 AM
I like the idea so far and I definitively notice the inspiration from SoU. The graphics look cool together by the way.
Thanks! I actually took my tiles from quite a few cancelled projects including 2Arms, my failed RTS/Turn-based Strategy and a cancelled platformer called Fisiks, both being started before SoU. The player sprite is the only one I may not keep for my main map pack. I think he'll fit in with the story just fine, but I'm not quite sure.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

123outerme

https://www.youtube.com/watch?v=_9e_5yKCHtk

I have some new progress to display! This screenshot, I made some decently big progress on the engine! I added the ability to write scripts for your maps. Scripts are versatile lines of data that define behavior of a certain map. In this case, I showed a script that warps the player to any other map, in any other coordinates. This is a "use portal" script, which, when stepping on a warp gate tile with defined behavior, shows a fading animation like I displayed, then puts the player in a new map. The warp gate script will be used to very good effect in the main map-pack, and map-makers will obviously be allowed to use this script to its fullest as well! You may ask how the warp gate is a mechanic worth showing, and I concede, it's not exactly a mechanic. However, the freedom that the warp gate script, and scripts in general, provide is enough to get me excited. When I start developing the main map-pack for real, you will be convinced on how to effectively use such a device.

Other script behavior has already been defined, such as a dialogue script, which displays the specified line of text upon triggering the event. I haven't written it yet, but there will be some sort of script editor. Whether that's included in the map editor, its own seperate tool, or whatever, it will exist.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

Dream of Omnimaga

I like so far. My suggestion would be to add a character animation when he walks around ^^
  • Calculators owned: TI-82 Advanced Edition Python TI-84+ TI-84+CSE TI-84+CE TI-84+CEP TI-86 TI-89T cfx-9940GT fx-7400G+ fx 1.0+ fx-9750G+ fx-9860G fx-CG10 HP 49g+ HP 39g+ HP 39gs (bricked) HP 39gII HP Prime G1 HP Prime G2 Sharp EL-9600C
  • Consoles, mobile devices and vintage computers owned: Huawei P30 Lite, Moto G 5G, Nintendo 64 (broken), Playstation, Wii U

123outerme

Quote from: xlibman on October 23, 2017, 01:12:09 AM
I like so far. My suggestion would be to add a character animation when he walks around ^^
That's a good suggestion! My only concern with that is that map-makers will have to define at least one more sprite in their map-pack file (which is an automated process, thanks to the map-pack wizard, but still, not optimal). If I did that, I'd probably have only two or three frames of animation total, just to keep things simple.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

123outerme

https://www.youtube.com/watch?v=qAI4QzvIFrc

Here's a look at a little bit of work I did on this today! I added an HP display, removed FPS counter (you can bring it back by pressing a certain key, although I haven't decided which key yet), and added the functionality to spikes! Spikes reduce 1/4 of a heart in damage per contact, and you are also thrown back in the direction you moved. This is done by increasing your velocity so that you are automatically moved. This velocity system I put in place will also be used for enemies and maybe some more puzzle mechanics.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

Dream of Omnimaga

This looks cool. I lol'ed at the Stop Dying text tho XD

I'm glad this is still being worked on
  • Calculators owned: TI-82 Advanced Edition Python TI-84+ TI-84+CSE TI-84+CE TI-84+CEP TI-86 TI-89T cfx-9940GT fx-7400G+ fx 1.0+ fx-9750G+ fx-9860G fx-CG10 HP 49g+ HP 39g+ HP 39gs (bricked) HP 39gII HP Prime G1 HP Prime G2 Sharp EL-9600C
  • Consoles, mobile devices and vintage computers owned: Huawei P30 Lite, Moto G 5G, Nintendo 64 (broken), Playstation, Wii U

123outerme

Quote from: xlibman on December 02, 2017, 07:16:24 AM
This looks cool. I lol'ed at the Stop Dying text tho XD

I'm glad this is still being worked on
Thanks! I'm glad I'm still making progress too, however slow. I made that map pack entry when testing my map-pack header wizard, and I liked the name, so I think that's one I'm going to make. I have at least one more idea that I'm keeping secret for now, but I think both will turn out great. Of course, I need to make the main campaign first.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

123outerme

https://www.youtube.com/watch?v=JG0TJ1kSa78

Here's my new update! I finally bit the bullet and implemented enemies in their entirety, after months of practically radio silence on the matter. Yes, if you're wondering, POTY 2017 did motivate me to get working again, among other things. Enemies can collide with you, knocking you back and dealing damage, collide with the sword, dying (although in the future I will have some enemies have more HP, taking damage and getting knocked back as well), and not shown here and not implemented quite yet, collide with the environment. Every enemy will have some sort of special attributes.

For right now, the implementation of the special attributes is: the bird does not collide with the environment and does minimal damage, while flying straight at the player. The stone ent attacks like a rook; it tries to line itself up with the player's left-right, then attacks, does good damage, and moves rather slowly. The slime enemy has yet to be implemented fully.

I think I may change this around, especially as map-packs will be using different tiles for the enemies. I would like to make each enemy's behavior individual, yet generic enough so that a multitude of enemy appearances can fit the same type.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

Dream of Omnimaga

I liked when you got hit by an enemy and bounced off very fast. You should also add special moves where you dash into a certain direction ^^
  • Calculators owned: TI-82 Advanced Edition Python TI-84+ TI-84+CSE TI-84+CE TI-84+CEP TI-86 TI-89T cfx-9940GT fx-7400G+ fx 1.0+ fx-9750G+ fx-9860G fx-CG10 HP 49g+ HP 39g+ HP 39gs (bricked) HP 39gII HP Prime G1 HP Prime G2 Sharp EL-9600C
  • Consoles, mobile devices and vintage computers owned: Huawei P30 Lite, Moto G 5G, Nintendo 64 (broken), Playstation, Wii U

123outerme

Quote from: xlibman on January 13, 2018, 12:49:33 AM
I liked when you got hit by an enemy and bounced off very fast. You should also add special moves where you dash into a certain direction ^^
That's a really good idea! I was trying to think of some sort of rewards for the progression system that I could add, and special moves sounds like a really good idea! I'll definitely write that down.
  • Calculators owned: TI-84+CSE, TI-nspire Clickpad, TI-84+SE

Powered by EzPortal