Getting a list of monkey commands

Monkey Forums/Monkey Programming/Getting a list of monkey commands

Shagwana(Posted 2011) [#1]
How do you go about generating a list of current reserved monkey commands?

I want it so I can bend the will of an existing IDE to be used for monkey development.


degac(Posted 2011) [#2]
There are keywords (Class, Function, For, Repeat...) - reported in the help manual - and there are 'commands' (DrawImage, DrawRect...).
These commands are not registered in any file (like in BlitzMax, where there's commands.txt)

I made a 'scanner' (written in BlitzMax) to try to 'extract' what are the 'funcions-commands' (but it could be not exact)

The list represents

NAME|FULLNAME|Module|Sub_module




Shagwana(Posted 2011) [#3]
Thanks for the list.

If we are to be able to use 3rd party editors we are going to need a easy(~ish) way to pull these commands, functions, keywords <what not> out of monkey.


Foppy(Posted 2011) [#4]
Shouldn't the order of the ATan2 parameters be reversed?

ATan2(y,x)


Warpy(Posted 2011) [#5]
yep