Hello, I have been thinking about making a new programming language for a while now. It won't really be like C or C++, it will be more like Adobe Flash. Here's what I'm thinking: a user would open a text editor (gedit in Ubuntu, notepad in windows, textedit in OSX) and type code specifying the height and width of the end result, the background, the characters, and the scripts and save it as a .isg file. Then, they would close the text editor and open the file in something like a flash player (which is what I need help making) and they will be able to play the game. So, how would I program the player? I have a basic understanding of C++, I should probably learn some more though... Thanks for all of your help!
Offline
It sounds like you want an interpreted language, so:
1. Make a parser
2. Make an interpreter
3. Implement primitives
Offline
If you are serious take a look at JavaCC or flex/bison. This will only help you making a lexer and parser, the rest is your work. They both require you to be an expert at Java and C respectively. If you can't use pointers, don't even bother with bison.
Offline