mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
41 lines
1.7 KiB
Markdown
41 lines
1.7 KiB
Markdown
# Roadmap
|
|
|
|
There's a few things I'd like to do with the langauge, namely bugfixes, new features and implementing a game with it.
|
|
|
|
## Game And Game Engine
|
|
|
|
The Toy programming langauge was designed from the beginning as though it was supposed to be embedded into an imaginary game engine. Well, now that the lang is nearly feature complete, it's time to start on that engine.
|
|
|
|
To that end, I've begun working on this: [Airport Game](https://github.com/Ratstail91/airport).
|
|
|
|
This is a simple game concept, which I can implement within a reasonable amount of time, before extracting parts to create the engine proper. It feels almost like a mobile game, so I'm hoping this engine will be runnable on android (though at the time of writing, I've yet to investigate how).
|
|
|
|
## New Features I'd Like One Day
|
|
|
|
Some things I'd like to add in the future include:
|
|
|
|
* ~~A fully featured standard library (see below)~~
|
|
* ~~An external script runner utility library~~
|
|
* A threading library
|
|
* A random generation library (numbers, perlin noise, wave function collapse?)
|
|
* ~~A timer library~~
|
|
* Multiple return values from functions
|
|
* ~~Ternary operator~~
|
|
* interpolated strings
|
|
* ~~MSVC compilation~~
|
|
|
|
Some of these have always been planned, but were sidelined or are incomplete for one reason or another.
|
|
|
|
## Nope Features
|
|
|
|
Some things I simply don't want to include at the current time include:
|
|
|
|
* Classes & Structures
|
|
* Do-while loops
|
|
|
|
This is because reworking the internals to add an entirely new system like this would be incredibly difficult for very little gain.
|
|
|
|
Ironically, I've never used a do-while loop seriously until I started implementing this language.
|
|
|
|
|