Please sign in to access this page

Airfleet

Airfleet

11 devlogs
33h 9m
Created by FireEntity

An airline manager game!

Timeline

Working on making a whole system for events right now. It's taking so much longer than I thought it would just because I'm trying to not hardcode everything like the last time I made a similar game. It's nearing completion though I'm making good progress!!

Update attachment

Overhauled the revenue system to take into account how many planes the player is flying on a given route. The more planes being flown, the less money you'll make per flight (to a limit so it doesn't go into negatives.) I'm also working on adding more displays so the player can see the information without looking at the print statements in the console!

Update attachment

You can now make money! The full math for how revenue is calculated isn't finished yet but it's mostly done. I need to balance it a lot more though

YESS ROUTE SELECTION WORKS NOW!! all planes get auto sorted into categories based on their current route status and you can change which plane is flying which route!! :D

Flying system! Each plane flies its route in relation to its' speed and distance. A slower, cheaper plane will fly the same route slower than a faster, more expensive plane. It also automatically starts flights. All I have to do now is finish up the plane selection system and I'll be done this part!!!

Update attachment

Added functions to sort planes into categories whether they are grounded, flying the current route, on another route, or completely free. Selecting a route will also show you which planes are available and check the ones that are (in this case no planes are flying this route so everything is unchecked.) This is by far the hardest part of this project and I'm probably going to spend more time finishing it off since it's missing a LOT of features. After this it should be pretty smooth sailing.

Update attachment

Every time a plane is added to your hangar, it is given a unique registration! Selecting a route also shows which planes can fly that specific route (calculated by range) You can fly from any Canadian city to any other city in the world as of now!

Update attachment

You can now select routes from any Canadian airport (airline will be based in Canada) to any destination and it'll display the distance between the two! I also added a button to buy aircraft although there's no way to display it other than viewing the same file.

Update attachment

There's a (dynamically generated) view of each airport now! You can upgrade and it will save to the file and load automatically. Not hardcoding every value in like the last time I made a similar game makes everything so much cleaner and easier to handle!!!

Update attachment

Made a whole dictionary containing all the info and attributes I'd need for a decently-sized list of airports. Started working on actually displaying the content too instead of just printing it to the console every time!!

Update attachment
FireEntity FireEntity about 1 month ago
btw the list is dynamic, it pulls from the const plane dictionary and generates the list from that!

Made a save file, the base presets for each plane object, and added a save/load system that saves to the user data directory!

Update attachment