2.5 version

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

2.5 version

Post by Mr. Kibernetik »

New command will be added:

SET EDITOR FONT SIZE n
sets size of editor font to value [n].

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

New command will be added:

SET EDITOR DEFAULT
sets editor font settings to default.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

New commands will be added:

SET EDITOR BACK COLOR r,g,b
sets editor background color to value with red [r], green [g] and blue components. Valid values are from 0 to 1.

SET EDITOR FONT COLOR r,g,b
sets editor font color to value with red [r], green [g] and blue components. Valid values are from 0 to 1.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

New command will be added:

SET EDITOR FONT NAME n$
sets name of editor font to [n$]. List of fonts you can get by command LIST FONTS.

Command LIST FONTS will return alphabetically sorted list of fonts.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

So, using editor settings commands like this:

Code: Select all

set editor font color 0,.6,.2
set editor back color 0,0,0
set editor font name "Courier"
set editor font size 18
one can customize editor appearance, for example:
default.png
default.png (162.44 KiB) Viewed 3257 times
typewriter.png
typewriter.png (172.77 KiB) Viewed 3257 times
fairy.png
fairy.png (150.81 KiB) Viewed 3257 times
night vision.png
night vision.png (154.86 KiB) Viewed 3257 times
gold day.png
gold day.png (156.29 KiB) Viewed 3257 times
gold night.png
gold night.png (158.95 KiB) Viewed 3257 times

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

Icons will be redesigned to be more standard-looking.

Text search in code editor will be implemented.
Снимок экрана 2013-09-14 в 9.46.59.png
Снимок экрана 2013-09-14 в 9.46.59.png (137.9 KiB) Viewed 3244 times

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

DEBUG ON/OFF command will become obsolete because new "pause" button will be implemented.

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

All example programs will be put inside folder "Examples".

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

Unique feature of tinting of selected lines of code in code editor will be implemented:

You can set tinted background in code editor for any lines of your code. To do this you need to set special color marks in the beginning of code line. Color marks are: 'r', 'g', 'b', 'c', 'm', 'y' for red, green, blue, cyan, magenta and yellow tint colors respectively. If you need to stop coloring at some line, use '' (two ' characters) color mark. Example of tinted code:

Code: Select all

'r'
PRINT A 'line with red tint
'g'
PRINT B1 'lines with green tint
PRINT B2
''
PRINT C 'line without tint
'b'
PRINT D 'line with blue tint
Tinting is applied to background of any color. Note: tinting is available for iOS 6.0 and higher.
Снимок экрана 2013-09-15 в 1.16.04.png
Снимок экрана 2013-09-15 в 1.16.04.png (145.42 KiB) Viewed 3239 times

User avatar
Mr. Kibernetik
Site Admin
Posts: 4786
Joined: Mon Nov 19, 2012 10:16 pm
My devices: iPhone, iPad, MacBook
Location: Russia
Flag: Russia

Re: 2.5 version

Post by Mr. Kibernetik »

New command will be implemented:

GET DIM n XSIZE x YSIZE y ZSIZE z
gets sizes of "x", "y" and "z" dimensions of array [n] and saves them to numeric variables [x], [y] and [z]. You may specify only those dimensions which you need, for example:
GET DIM n XSIZE x

Post Reply