[Java] Pokémon Walking algorithm

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
The items disappear.
If you picked items up, it should be moved into your inventory. Scroll around in the bag to see if the items are in there. The items disappear because anything picked up in the game should be placed directly into the bag, just like the original games.

I'm currently working on triggers for the game. It's now possible to make scripted movements based on would-be game events. The latest dev build of the level editor supports triggers, which will help in creating a more interactive custom map.
 

jonas

You can change this now in User CP.
Reaction score
61
I did not make myself clear, apologies. When I load, the items disappear.

EDIT: To be even more precise, the items in my inventory disappear.
 

jonas

You can change this now in User CP.
Reaction score
61
Here is the loadfile. Note the bicycle in the file.
 

Attachments

  • data.txt
    153 bytes · Views: 491

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Thanks, even though it was expected to be a ZIP file containing a SAV file, I think it should be good enough.

I put your bug report up on Github, so you can be able to check to see if the issue has already been fixed.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Big update v19:

Bugfixes:
  • Game: Fixed minor potential bugs.
  • Game: Fixed game stalling if dialogues are not being shown, yet the player is seen interacting with entities.
  • Game: Fixed area color not being shown correctly; House roof colors not being represented by its actual colors.
  • Game: Fixed items not being placed in the inventory after picking it up.
  • Game: Fixed items not appearing in the inventory after saving and then reloading the game.
  • Game: Fixed input lag not balanced or set correctly when riding/getting off the bicycle.
  • Editor: Fixed animated tiles not being animated while drawing tilesets.
  • Editor: Fixed not being able to set tile biomes while drawing tilesets.
  • Editor: Fixed hidden bug causing unpredictable loading sequences.
  • Editor: Fixed mouse positions being jumpy.
  • Editor: Fixed issues with mouse positions being calculated incorrectly.
  • Editor: Fixed possible fatal crash; will notify users of this problem if certain conditions have been met.
Enhancements:
  • Game: Added Triggers.
  • Game: Now uses new map format to incorporate triggers. Old existing maps will now need to be redrawn.
  • Game: Saving/Loading uses new map format.
  • Game: Added FPS counter at the top.
  • Editor: Added Triggers and Tileset layers.
  • Editor: GUI has been modified.
  • Editor: Saving maps with triggers now possible.
  • Editor: It is now possible to see a tile's data values just by hovering the mouse cursor over it.
  • Editor: It is now possible to see a trigger's data values just by hovering the mouse cursor over it.
  • Editor: Now remembers the directory file in which you have last saved/opened your custom maps.
  • Both: Added new House tiles.
Converting old maps to new maps:
  1. Grab Paint.NET or GIMP, one of these graphics editors.
  2. Open the old map using the graphics editor of your preferred choice.
  3. Copy all of the pixels. (Ctrl+A, then Ctrl+C) This is in case you accidentally erased something.
  4. Set Canvas size to (1 + original map height).
  5. Move the entire map down 1 pixel. (Or Ctrl+A, Delete, Ctrl+V, and then move it down by 1 pixel)
  6. Save.
Now your old map is converted to the new format. If you want to know why, you can go check out the code here.

--------------------

Pokémon Walking.zip <-- Contains both the game and the "map" editor.
editor_v5.zip <-- Contains the editor only.
walking_v19.zip <-- Contains the game only.
 

Attachments

  • editor_v5.zip
    236.6 KB · Views: 855
  • Pokémon Walking.zip
    473.3 KB · Views: 857
  • walking_v19.zip
    236.6 KB · Views: 871

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Those who already knew that I am packing for tomorrow's flight, please ignore.

This project will be on temporary hold for now. Since I will be moving to US for my graduate study, there won't be any updates until the end of July.

Sort of like taking a short break.

If this project still does not have any activities after August 1st, 2014, please assume that I am in trouble.

I vowed that this project will not be discontinued by the end of 2016. This is a wonderful project for me, so why should I quit now? There are so many potentials...

That is all. Please stay tuned.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
6Tcdi5a.png


I forgot what small details had changed. So, forgive me for not logging all the changes for 1 whole year.
  • New Script Editor!
  • New Level Editor layout changes!
That's all. I should probably start logging the changes.
 

Attachments

  • walking_v20.zip
    263.7 KB · Views: 921
  • editor_v6.zip
    263.7 KB · Views: 736

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
This thread warrants a new update.

It's May 9, 2020, and it's definitely 8 years since the first post of this thread. (OP thread start date was May 12, 2013).

New code foundations were set. Fixed huge issues with how the codes were structured, as it's not OOP in the past, and the code was written amateurishly. Both the game and the level editor are now updated with some of the fixes going into core issues in both places.

It's now using Java 12, probably will move into Java 13 LTS at some point.

Split the project into modules. We now have 2 branches, 1 master, and 1 called "joe". This branch's main goal is to get a functioning NPC working. Script Editor will come in handy once the NPC system is in place.

And then once the "joe" branch is merged into "master", we can then start focusing on battles.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Currently working on a new improved game loading/saving system that will replace the current system. The old system is not that easy to add information, and it's cumbersome to try and adjust the code to do this.

The new system will allow me to quickly add in new information, while maintaining the byte chunk data, and more. This will help with NPC system, character inventory management, in-game system date & time, and many more.

Like I said, fundamental codebase was whack... Gotta fix what I did from the ground up...
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Do you version your save files?
Yes I do. The save file is now version 0002.

If you're referring to how many times the save data file has been written to, and keeping track of "written revisions", no I don't keep track of that. I'm not sure why you would want to do this though.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Merged my bugfix branch into master.

This means all of the refactoring and rewriting of the messy codebase are now finished. It did take a long while to get to this point.
 

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Moved and updated my project to use Gradle 7.1.1. Made a lot of changes, so the level editor and game now supports TDIC hash checksum checking.

Mostly under-the-hood changes. The next versions will be officially using semantic versioning, v0.9.X, or v0.10.0, if new, significant features are added.
 

Attachments

  • walking_v21.zip
    249.6 KB · Views: 123
  • editor_v7.zip
    339.9 KB · Views: 123

tom_mai78101

The Helper Connoisseur / Ex-MineCraft Host
Staff member
Reaction score
1,600
Made a hotfix for Pokemon Walking.

  • Added support for human-readable trigger symbols in the script files.
  • Fixed loading default world maps and scripts not using TDIC checksum checks.
 

Attachments

  • walking_v0.9.1.zip
    253.1 KB · Views: 118
  • editor_v0.9.1.zip
    343.4 KB · Views: 118
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    And our actual cooks aren't really trained for that. Our line lead will be fine but our tournant is still kind of struggling with some things and he takes mistakes way too hard. I got onto him about scorching pans when making cream sauces and he started fucking everything else up, like dude it's fine just turn your heat down a bit. And then he burned like three batches of couscous in a row and it's like man
  • Varine Varine:
    He walked away from the first batch, learned nothing and walked away from the second batch, and then tried to toast it in a saute pan made out of aluminum so it scorched immediately and then I took away and he was sad all day
    +1
  • Varine Varine:
    I know our range sucks but it's still a fucking fire down there, I've never measured it but I'm sure it's like a couple thousand degrees.
    +1
  • The Helper The Helper:
    I wish I had a flat top grill in my kitchen!
  • jonas jonas:
    I wish I could cook asian dishes :D
  • The Helper The Helper:
    You just need a pressure cooker like an instapot for the asian dishes
  • The Helper The Helper:
    they make that stuff easy
  • The Helper The Helper:
    and there is a flat top grill I can buy that will work on my stovetop but it is pricey
  • The Helper The Helper:
    and I have no room for that anyway
  • Varine Varine:
    I have a thing that goes over two burners for my house, but it doesn't work great. I think they make ones that plug in where the coils go but it's not cheap.
  • Varine Varine:
    And yeah if you have a pressure cooker you can do lots of stuff really fast. Depending on what you're trying to do it ranges from really easy to really hard
  • Varine Varine:
    If you want to make tonkotsu broth, you're gonna have a rough time, but if you want to do like stir fries or something that tends to be pretty easy
    +1
  • Varine Varine:
    Ingredients are sometimes hard to find though, which is why we're doing 'fusion'. We don't have wok burners either, so it'll be kind of a weird transition
    +1
  • The Helper The Helper:
    Added another slow cooker recipe - this time a dessert - Slow Cooker Fried Apples https://www.thehelper.net/threads/recipe-slow-cooker-cracker-barrel-fried-apples.192860/
  • Varine Varine:
    I have three teenagers apply for college that all asked for letters of recommendation with like two days notice lol. Like I get it guys, and I'm happy to help, but maybe tell me you need it before you need to turn these applications in?
  • Varine Varine:
    I guess they are literal children, so not exactly the best at thinking ahead. Fucking kids
  • The Helper The Helper:
    Yeah they are just inexperienced and young
  • jonas jonas:
    I'm still horrible at that :eek: often forget things or do things on the last minute
  • The Helper The Helper:
    My daughter is same way
  • The Helper The Helper:
    Happy Saturday people!!!
  • The Helper The Helper:
    I am sure nobody cares but I am seriously considering taking the Gaming News forum and just changing it to General Gaming Discussion since I post so much about gaming in the General Discussion Forum
  • The Helper The Helper:
    guests online 487 at 12:30 and none of them show up on the stats - all bots man
  • The Helper The Helper:
    Latest recipe is a great one - I love Philly Cheese and this is Philly Cheese Meatloaf https://www.thehelper.net/threads/recipe-philly-cheese-meatloaf.192935/
  • Ghan Ghan:
    Beep boop
    +1

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top