- This wiki is out of date, use the continuation of this wiki instead
Fenix console
From FenixWiki
(Difference between revisions)
Revision as of 14:34, 22 April 2007 (edit) Woody (Talk | contribs) ← Previous diff |
Revision as of 01:11, 26 November 2007 (edit) (undo) Sandman (Talk | contribs) Next diff → |
||
Line 1: | Line 1: | ||
[[Category:general]] | [[Category:general]] | ||
- | The Fenix console is a handy debugging tool. Many commands can be entered in it, like [[process]] manipulation or [[variable]] manipulation. The current state of [[Globals]], [[Constants]], [[Locals]], [[Publics]], [[Privates]] can also be monitored. One can add text to it in the | + | The Fenix console is a handy debugging tool. Many commands can be entered in it, like [[process]] manipulation or [[variable]] manipulation. The current state of [[Globals]], [[Constants]], [[Locals]], [[Publics]], [[Privates]] can also be monitored. One can add text to it in the programcode by using the function [[say]](). |
- | In the later Fenix versions (''from which version exactly?'') the Fenix console | + | In the later Fenix versions (''from which version exactly?'') the Fenix console freezes the program when activated, until it is deactivated again. |
To use the debugger, run in debug mode by compiling your program in FXC.exe with the argument "-g", and then activate it in-program with ALT+C. | To use the debugger, run in debug mode by compiling your program in FXC.exe with the argument "-g", and then activate it in-program with ALT+C. | ||
+ | |||
+ | == Example == | ||
+ | <pre> | ||
+ | Program example; | ||
+ | Begin | ||
+ | Repeat | ||
+ | frame; | ||
+ | Until(key(_ESC)) | ||
+ | End | ||
+ | </pre> | ||
+ | {{Image | ||
+ | | image = Console.PNG | ||
+ | | caption = A default console without messages | ||
+ | }} |
Revision as of 01:11, 26 November 2007
The Fenix console is a handy debugging tool. Many commands can be entered in it, like process manipulation or variable manipulation. The current state of Globals, Constants, Locals, Publics, Privates can also be monitored. One can add text to it in the programcode by using the function say().
In the later Fenix versions (from which version exactly?) the Fenix console freezes the program when activated, until it is deactivated again.
To use the debugger, run in debug mode by compiling your program in FXC.exe with the argument "-g", and then activate it in-program with ALT+C.
Example
Program example; Begin Repeat frame; Until(key(_ESC)) End
|