Computer Science Canada View.Set |
Author: | Scott [ Fri Feb 27, 2009 7:45 pm ] | ||
Post subject: | View.Set | ||
Hello, I am working on a game and have most of the mechanics worked out, jokes its far from. I am taking a break from it and have moved onto a graphical display for it. I want to use ASCII to display my game. I have two questions which are probably simple but I never dealt with. First
Second. How do I get Turing to output characters by giving it ASCII values? Thanks to anyone who helps. |
Author: | andrew. [ Fri Feb 27, 2009 8:45 pm ] |
Post subject: | RE:View.Set |
If you use "put" and "locate" it will work by character columns and rows. You can also change the mode to text with "View.Set ("text")", but I don't recommend it. I am actually not sure about your second question and I don't have Turing right now. |
Author: | TheGuardian001 [ Fri Feb 27, 2009 10:28 pm ] | ||||
Post subject: | Re: View.Set | ||||
Ascii values can be outputted to the screen using
as for setting by rows and columns, you can use
screen allows you to use both text and graphics, while still allowing you to set by rows/columns. |
Author: | Scott [ Sat Feb 28, 2009 2:34 pm ] |
Post subject: | Re: ASCII |
Thanks for the help, but I tried that and it doesn't work for the extended ASCII.. Does Turing even support the extended? |
Author: | BigBear [ Sat Feb 28, 2009 6:05 pm ] |
Post subject: | Re: View.Set |
You can see all the values of the keys in the F10 help documentation. What do you mean by extended |
Author: | Scott [ Mon Mar 02, 2009 5:50 pm ] |
Post subject: | Re: View.Set |
Here this is what I am trying to get, look at the extended set of ASCII characters. http://www.asciitable.com/ |
Author: | TheGuardian001 [ Mon Mar 02, 2009 6:15 pm ] |
Post subject: | Re: View.Set |
Ah, In that case, you will need to use View.Set("msdos"). This changes the characters from 128 on to the extended set, as opposed to the normal one. |
Author: | Scott [ Tue Mar 03, 2009 8:41 pm ] |
Post subject: | Re: View.Set |
Thanks you that's exactly what I needed. |