parseManagerCS/ReadMe.md
Ryan b4cca046a3 Stability Increases! Ver: 1.3!
Still work to be done though
2017-09-01 23:29:25 -04:00

9.2 KiB

ParseManagerCS Version! TODO:

  • Allow the use of functions in arguments (Tough)
  • Allow the use of statements in conditionals: if num+5>=GETAGE()-1 then STOP(song)|SKIP(0) (Tough)
  • Add other cool built in things (Fun)
  • Add object support (Tough)
  • Improve audio support (Simple)
  • Add simple threading (Alright)
  • Fix Bugs! (Death)
  • multiple returns for functions

Maybe:

  • Add While/for loops (With labels this can easily be done. So it isn't really needed, I may add it in the future though!)

This version is 1.0! Writing code

VERSION 1.0
-- Tell the interperter that this code is for version 1.0
ENTRY START
-- By defualt the entrypoint is start, but you can define your own if you want
LOAD data/OtherFile.dat
-- You can also load other files like this... This LOAD is different to LOAD() it must be at the top of the file
ENABLE leaking
-- When the end of a block is reached it will go to the next one... Disabled by defualt!
DISABLE casesensitive
-- when this is done 'NamE' and 'name' mean the same thing for variable names enabled by defualt
DISABLE forseelabels
-- Enabled by defualt, when disabled you can only jump to labels within the current block!
-- GOTO always searches the current block first then looks into others when jumping!
ENABLE debugging
-- When enabled a lot of mess will show up on your console... This isn't really useful to you as much as it is for me... If you ever have a weird error enable debugging and post everything into an issue so I can look at what causes an error
-- This language is still a major WIP!
-- Create a block named START
[START]{
	"This is a pause statement"
    -- This is a comment, comments in version 1.0 must be on independent lines like this
    -- A pause statement prints the string and waits for enter to be pressed if you are using the console!
	-- Version 2.0 Will have a few changes that allow pause statements to work a bit differently
	::A_Label::
    	-- Labels allow you to jump to a section of code from anywhere!
        num=0
        -- This language has a few types
        -- Numbers
        -- Strings
        -- bools
        -- Tables (A mix between lists and arrays) These are a bit bugged at the moment!
        str="string"
        bool=true
        tab=[1,2,3,4]
}
-- It is also useful being able to create your own functions
[callMe:function(msg)]{
	print(msg)
    -- We will just print!
}
-- An important note about functions: Everything except a functions enviroment is global
-- A function can read, but not write to the global enviroment! (You can get around this using labels and blocks)
-- You can use the method setVar("VarName",data) to set the global data

First we will look at flow control! There are a couple of functions that deal with flow control

  • JUMP(string block) -- Jumps to a block
  • GOTO(string label) -- Goto's a label
  • SKIP(int n) -- moves up or down line(s) of code by a factor of 'n'
  • EXIT() -- Exits the mainloop keeping the language running
  • QUIT() -- Exits out of the code at once closing the application
  • SAVE() -- Saves the state of the code (Can be scattered around wherever except functions and threads!) This will bug out if saved in a function due to the stack not being saved! Only variables and position of your code is saved!
  • LOAD() -- allows you to restore your saved session (Does not work within threads! Functions untested!)

Thats it in regards to flow control... All flow control functions are uppercase! While every other is lower camelcase

We also have a bunch of other built in functions to make coding eaiser!

  • env=getENV() -- gets the current enviroment and returns it
  • void=setENV(ENV env) -- sets the current enviroment
  • env=getDefualtENV() -- gets the main global enviroment
  • env=createENV() -- creates a new enviroment
  • string=getInput() -- prompts the user for a string... use with write(msg)
  • void=setCC() -- Don't excatly know why this exists Will probably dissapare in Version 2.0
  • void=whiteOut() -- removes the last line from the console
  • void=setBG(Color c) -- sets the color of the BG text... SEE: Colors for how to get colors
  • void=setFG(Color c) -- stes the color of the FG text
  • void=resetColor() -- resets to the defualt console colors
  • number=len(object o) -- gets the length of a table of a string
  • tonumber(string strnum) -- turns a string to a number if it contains a number in it
  • void=sleep(number milliseconds) -- sleeps for some time
  • void=setVer(string name,object data) -- sets the global variable to data
  • number=ADD(number a,number b) -- Low lvl command for testing that survived, not needed just write expressions when you need it
  • number=SUB(number a,number b) -- Low lvl command for testing that survived, not needed just write expressions when you need it
  • number=MUL(number a,number b) -- Low lvl command for testing that survived, not needed just write expressions when you need it
  • number=DIV(number a,number b) -- Low lvl command for testing that survived, not needed just write expressions when you need it
  • number=CALC(string expression) -- Low lvl command for testing that survived, not needed just write expressions when you need it
  • void=pause() -- pauses until you press enter
  • void=print(string msg) -- prints a message with the newline character appended to it
  • void=write(string msg) -- same, but no newline is appended
  • number=random(number min,number max) -- returns a random number between min and max
  • number=rand() -- returns a random number from 0 and 1
  • round(number num,number numdecimalplaces) -- rounds a number
  • void=clear() -- clears the console
  • void=backspace() -- deletes the last character
  • void=beep() -- makes a beep sound from the console
  • void=fancy(string msg) -- Prints a message in fancyprint... See Fancy
  • void=setFancyForm(string form) -- sets the form for fancyprint... See Fancy
  • void=setFancyType(number type) -- sets the type for fancyprint
  • id=loadSong(string path) -- loads an audio file
  • void=playSong(id) -- plays it
  • void=stopSong(id) -- stops it
  • void=pauseSong(id) -- pauses it
  • void=resumeSong(id) -- resumes it
  • void=setSongVolume(id,number vol) -- turn it up or down
  • void=replaySong(id) -- replays the song (Untested... It may of may not work...)
  • void=setPosition(x,y) -- sets the position of the console
  • void=writeAt(string msg,x,y) -- writes at a certain position
  • bool=isDown(key) -- returns true if a key is pressed See Keys

Here is a RPS(rock paper scissors) Example!

VERSION 1.2 -- This will not work on older versions!
ENTRY RPS -- Set entry point to RPS
[RPS]{
	write("Name: ")
	name=getInput()
	clear() -- clear the console
	if name=="" then SKIP(-4)|SKIP(0) -- This stuff makes empty inputs invalid! If nothing was entered prompt again!
	"Lets play! Press Enter when your ready" -- a pause statement... Well kinda atleast on CONSOLE mode...
	list=["r","p","s"] -- create a list
	list2=["rock","paper","scissors"] -- creats another list
	list3=[] -- create an empty table
	list3["r"]="rock" -- set the index of the table
	list3["p"]="paper"
	list3["s"]="scissors"
	::gameloop::
		cpus_mov=random(0,3)
		cpus_move=list[cpus_mov]
		write("Enter 'r' 'p' or 's': ")
		player_move=getInput()
		print("You played: $player_move$ the CPU played: $cpus_move$")
		if player_move!="r" and player_move!="p" and player_move!="s" then GOTO("gameloop")|SKIP(0)
		a=list2[cpus_mov]
		b=list3[player_move]
		if player_move==cpus_move then JUMP("TIE")|SKIP(0)
		if cpus_move=="r" and player_move=="s" then JUMP("CPUWIN")|SKIP(0)
		if cpus_move=="p" and player_move=="r" then JUMP("CPUWIN")|SKIP(0)
		if cpus_move=="s" and player_move=="p" then JUMP("CPUWIN")|SKIP(0)
		b=list2[cpus_mov]
		a=list3[player_move]
		if player_move=="r" and cpus_move=="s" then JUMP("PlayerWIN")|SKIP(0)
		if player_move=="p" and cpus_move=="r" then JUMP("PlayerWIN")|SKIP(0)
		if player_move=="s" and cpus_move=="p" then JUMP("PlayerWIN")|SKIP(0)
		::choice::
			write("That was a fun game! Do you want to play again? (y/n): ")
			cho=getInput()
			if cho=="y" then GOTO("gameloop")|SKIP(0)
			if cho=="n" then JUMP("GOODBYE")|GOTO("choice")
}
[CPUWIN]{ -- I am using these blocks like hybrid functions... instead of going back to their called location they go back to a location that I define
	"I won $name$, you lose! You know $a$ beats $b$"
	GOTO("choice")
}
[PlayerWIN]{
	"$name$ you won wow! I guess my $b$ was no match for your $a$"
	GOTO("choice")
}
[TIE]{
	"No one won..."
	GOTO("choice")
}
[GOODBYE]{
	"Thanks for playing!"
	QUIT()
}

Version 1.1 - 1.2 Were all about bug fixes

  • Logic if condition then func1()|func2() has been fixed!
  • Parentheses in both logic and math expressions now adhere to the order of opperations and(*) before or(+)
  • Fixed minor bugs with tables!

Version 1.3 addressed error handling

  • Error handling now displays the file that contains the error, the line number, the actual line's text and the error message!
  • new method: error(msg) Throws an error
  • new header: THREAD filename -- runs a file in a seperate thread. This helps when you are dealing with lots of threads!

TODO: Version 1.4

  • Fix error handling in a thread... While errors are handles correctly on the main thread multithreaded errors seem to not be handled correctly!

Idea: new block made to catch thread errors and stop thread related errors from exiting the app