<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.compsci.ca/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.compsci.ca/index.php?feed=atom&amp;target=Clayton&amp;title=Special%3AContributions%2FClayton</id>
		<title>Compsci.ca Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.compsci.ca/index.php?feed=atom&amp;target=Clayton&amp;title=Special%3AContributions%2FClayton"/>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Special:Contributions/Clayton"/>
		<updated>2026-04-15T03:51:42Z</updated>
		<subtitle>From Compsci.ca Wiki</subtitle>
		<generator>MediaWiki 1.16.0</generator>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=Clayton</id>
		<title>Clayton</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Clayton"/>
				<updated>2009-05-15T03:31:44Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Maybe when I have time and aren't exhausted, I or someone else will fill this in. 'Til then, piss off :)&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=Turing_Eliminate_Flickering</id>
		<title>Turing Eliminate Flickering</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Turing_Eliminate_Flickering"/>
				<updated>2008-10-12T15:12:26Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Well here goes, I saw the tutorial in the Turing Walkthrough for this and well... it didnt really explain much, so I'm going to try to give you a tutorial on what I know about View.Set and View.Update. :D&lt;br /&gt;
&lt;br /&gt;
==The Basics==&lt;br /&gt;
View.Set (alternately known as setscreen, but for the purposes of this tutorial we will be using View.Set) is a command that allows you to play around with your output screen. It allows you to change the size of the screen, the position of the screen, and other goodies that I will show you.&lt;br /&gt;
&lt;br /&gt;
===To Start===&lt;br /&gt;
To start with we need to know how to use View.Set. View.Set is called on its own line and can accept many different things, here is an example:&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set(&amp;quot;graphics:500;300,position:center;center,nobuttonbar,title:View.Set tut&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
now some of you are probably going, &amp;quot;Whoa, what the heck happened there?&amp;quot;, well let me explain. When giving View.Set a parameter, anything that's passed is in quotations. Now lets take apart my line piece by piece:&lt;br /&gt;
&lt;br /&gt;
1) View.Set : calls the Set procedure in the View module&lt;br /&gt;
&lt;br /&gt;
2) (&amp;quot;&amp;quot;) : the parameter passed to the Set procedure which is in quotes&lt;br /&gt;
&lt;br /&gt;
3) (&amp;quot;graphics&amp;quot; : this is a screen &amp;quot;[b]mode[/b]&amp;quot; by default the screen is set to &amp;quot;[b]text[/b]&amp;quot; mode, in which the screen is measured by [b]row[/b]s and [b]column[/b]s of characters, whereas in &amp;quot;[b]graphics[/b]&amp;quot; mode, the screen is measured in pixels and use a regular cartesian plane.&lt;br /&gt;
&lt;br /&gt;
4):500;300 : this sets the screen size to being 500 pixels wide(x-axis) and 300 pixels high (y-axis) in this way we can control the size of our screen to whatever we want&lt;br /&gt;
&lt;br /&gt;
5)&amp;quot;position:center;center&amp;quot; : this accesses your monitor size and places your run window in the center of the screen, you can also have&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set(&amp;quot;graphics:500;300,position:0,0,nobuttonbar&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where the position of the bottom left corner of your run window would be in the bottom left-hand corner of the monitor&lt;br /&gt;
&lt;br /&gt;
6)&amp;quot;nobuttonbar&amp;quot; : this is just one of a few things you can do to change the cursor, run window, and output. the following other commands can go into there as well if you so choose, seperated by a comma (,) from other commands:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;nobuttonbar&amp;lt;/b&amp;gt; : this eliminates the &amp;quot;button bar&amp;quot; at the top of the run window (the one with stop, pause, print etc on it)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;noecho&amp;lt;/b&amp;gt; : causes typed text not to show up on the screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;nocursor&amp;lt;/b&amp;gt; : causes the annoying Turing cursor to disappear, poof!&lt;br /&gt;
&lt;br /&gt;
7)&amp;quot;title: View.Set tut&amp;quot;) : changes the name on your run window from your program name run window to that of whatever follows the colon after title (eg. if your program's name is foo, the run window name would be foo run window unless changed with View.Set)&lt;br /&gt;
&lt;br /&gt;
==Using View.Set to eliminate Flickering==&lt;br /&gt;
Now I've noticed a lot of people lately have taken to asking how to reduce the flickering in their programs. So I am going to do my best to explain how to stop the flickering.&lt;br /&gt;
&lt;br /&gt;
To stop the flickering in programs Turing has a wonderful command called View.Update (there is also View.UpdateArea &amp;lt;b&amp;gt;offscreenonly&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
But what is so special about &amp;lt;b&amp;gt;offscreenonly&amp;lt;/b&amp;gt; you say? What it does is create an off screen buffer where all changes made to the screen are made there, and is drawn to the screen when View.Update is called. This is called double buffering. This reduces the flickering because all of the changes that you make are being made to the screen at once, so instead of seeing a clear screen for a split second then animation, then a clear screen for a split second... etc, you see all changes at once, resulting in a &amp;quot;smooth&amp;quot; animation :D&lt;br /&gt;
&lt;br /&gt;
Here I have an example of using offscreenonly without View.Update and with View.Update (its just a ball bouncing)&lt;br /&gt;
&lt;br /&gt;
without View.Update&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set (&amp;quot;graphics,offscreenonly&amp;quot;)&lt;br /&gt;
var x, y, xChange, yChange : int := 1&lt;br /&gt;
const RADIUS : int := 5&lt;br /&gt;
Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
x := maxx div 2&lt;br /&gt;
y := maxy div 2&lt;br /&gt;
loop&lt;br /&gt;
    Draw.Cls&lt;br /&gt;
    Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
    Draw.FillOval (x, y, RADIUS, RADIUS, green)&lt;br /&gt;
    Time.Delay (5)&lt;br /&gt;
    x += xChange&lt;br /&gt;
    y += yChange&lt;br /&gt;
    if View.WhatDotColor (x, y + RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x, y - RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
    if View.WhatDotColor (x + RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x - RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
end loop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy and paste that code into Turing and you'll see nothing appears to happen, that's because offscreenonly mode is in effect and you are not drawing what was put to the off screen buffer using View.Update, to solve that problem just stick in a View.Update and... Voila! It should also be noted that as few View.Updates should be used as possible to avoid unnecessary slowdowns and multiple View.Updates can cause a problem &lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set (&amp;quot;graphics,offscreenonly&amp;quot;)&lt;br /&gt;
var x, y, xChange, yChange : int := 1&lt;br /&gt;
const RADIUS : int := 5&lt;br /&gt;
Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
x := maxx div 2&lt;br /&gt;
y := maxy div 2&lt;br /&gt;
loop&lt;br /&gt;
    Draw.Cls&lt;br /&gt;
    Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
    Draw.FillOval (x, y, RADIUS, RADIUS, green)&lt;br /&gt;
    View.Update&lt;br /&gt;
    Time.Delay (5)&lt;br /&gt;
    x += xChange&lt;br /&gt;
    y += yChange&lt;br /&gt;
    if View.WhatDotColor (x, y + RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x, y - RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
    if View.WhatDotColor (x + RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x - RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
end loop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
pop that into your editor and you'll notice a ball moving around... without flickering!! yay we've solved the problem of flickering.&lt;br /&gt;
&lt;br /&gt;
now a program similiar to that but WITHOUT View.Update&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set (&amp;quot;graphics&amp;quot;)&lt;br /&gt;
var x, y, xChange, yChange : int := 1&lt;br /&gt;
const RADIUS : int := 5&lt;br /&gt;
Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
x := maxx div 2&lt;br /&gt;
y := maxy div 2&lt;br /&gt;
loop&lt;br /&gt;
    Draw.Cls&lt;br /&gt;
    Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
    Draw.FillOval (x, y, RADIUS, RADIUS, green)&lt;br /&gt;
    Time.Delay (5)&lt;br /&gt;
    x += xChange&lt;br /&gt;
    y += yChange&lt;br /&gt;
    if View.WhatDotColor (x, y + RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x, y - RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
    if View.WhatDotColor (x + RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x - RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
end loop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
notice how flashy/flickery the screen is? that is because all changes are being made to the screen as they happen instead of all happening at once from the buffer&lt;br /&gt;
&lt;br /&gt;
However, using View.Update has its drawbacks. It slows down your program IMMENSELY due to the fact that it has to update the entire screen from the buffer. The easiest way to solve this is to use a neat little command called...&lt;br /&gt;
&lt;br /&gt;
==View.UpdateArea==&lt;br /&gt;
&lt;br /&gt;
The only main difference from View.Update is that it only updates a specific area (specified by you). An example of its use is as follows:&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set(&amp;quot;offscreenonly&amp;quot;)&lt;br /&gt;
View.UpdateArea(0,0,100,100)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As you can see View.UpdateArea requires the screen to be in offscreenonly mode as well, but it also requires four(4) parameters (x1,y1,x2,y2), these parameters tell the computer to update the area within these boundaries and thus it can speed up your program (as its not updating the entire screen like View.Update)&lt;br /&gt;
&lt;br /&gt;
An example of View.UpdateArea in action (our ball program)&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set (&amp;quot;graphics,offscreenonly&amp;quot;)&lt;br /&gt;
var x, y, xChange, yChange : int := 1&lt;br /&gt;
const RADIUS : int := 5&lt;br /&gt;
Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
x := maxx div 2&lt;br /&gt;
y := maxy div 2&lt;br /&gt;
loop&lt;br /&gt;
    Draw.Cls&lt;br /&gt;
    Draw.Box (0, 0, maxx, maxy, black)&lt;br /&gt;
    Draw.FillOval (x, y, RADIUS, RADIUS, green)&lt;br /&gt;
    View.UpdateArea (x - 10, y - 10, x + 10, y + 10)&lt;br /&gt;
    Time.Delay (5)&lt;br /&gt;
    x += xChange&lt;br /&gt;
    y += yChange&lt;br /&gt;
    if View.WhatDotColor (x, y + RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x, y - RADIUS) = black then&lt;br /&gt;
        yChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
    if View.WhatDotColor (x + RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    elsif View.WhatDotColor (x - RADIUS, y) = black then&lt;br /&gt;
        xChange *= -1&lt;br /&gt;
    end if&lt;br /&gt;
end loop&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
as you can see the program runs faster now that the buffer isnt entirely being transferred to the screen. &lt;br /&gt;
&lt;br /&gt;
Also, if for any reason you want to turn offscreenonly off, simply create another call to View.Set with &amp;lt;b&amp;gt;nooffscreenonly&amp;lt;/b&amp;gt; in it to deactivate offscreen only. Another note is that, by default, your programs begin in nooffscreenonly mode. &lt;br /&gt;
&lt;br /&gt;
noofscreenonly in action:&lt;br /&gt;
&lt;br /&gt;
Turing:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
View.Set(&amp;quot;offscreenonly&amp;quot;)&lt;br /&gt;
%oops i dont want it on anymore&lt;br /&gt;
View.Set (&amp;quot;nooffscreenonly&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And with that I will end my Tutorial on View.Set and View.Update(Area) and leave you to try out this newfound idea :D hope this helps you animators out there!!&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=Turing_Walkthrough</id>
		<title>Turing Walkthrough</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Turing_Walkthrough"/>
				<updated>2008-10-12T15:03:49Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Essentials ==&lt;br /&gt;
&lt;br /&gt;
* '''The Basics''' - Introduction to programming, commenting, basic output, variables, and basic input ''by Cervantes''&lt;br /&gt;
* '''If structures''' - Write code that can make decisions ''by Cervantes''&lt;br /&gt;
* '''Functions and Procedures''' - Organize your code into sections and call them at will; introduction to recursion ''by Cervantes''&lt;br /&gt;
* '''Loops and For loops''' - To repeat sections of code over and over ''by Cervantes''&lt;br /&gt;
* '''[[Turing_String_Manipulation|String Manipulation]]''' ''by Cervantes''&lt;br /&gt;
* '''Index''' - searching through a string ''by AsianSensation''&lt;br /&gt;
* '''Records and Types''' - Create new, compound data types ''by AsianSensation''&lt;br /&gt;
* '''Arrays''' - Mass variables ''by Clayton and Cervantes''&lt;br /&gt;
* '''Enumerated Types''' - Create an indexing system that is readable and understandable ''by Clayton''&lt;br /&gt;
* '''[[Turing_File_IO|File Input/Output]]''' - Reading and writing data from/to text files ''by Clayton''&lt;br /&gt;
* '''Bitwise Operators''' - Experiment with binary, getting closer to lowlevel programming ''by Zylum''&lt;br /&gt;
* '''Recursion''' - Subroutines that call themselves can achieve amazing results ''by Zylum''&lt;br /&gt;
* '''Modules''' - Collections of procedures and functions ''by Delos''&lt;br /&gt;
* '''Pointers''' - Referencing memory and creating linked lists ''by lyam_kaskade''.&lt;br /&gt;
* '''Classes Part I''' - Make your own objects ''by Cervantes''&lt;br /&gt;
* '''Classes Part II''' - Create objects that interact with each other ''by Cervantes''&lt;br /&gt;
* '''Classes Part III''' - Inheritance and Polymorphism to create a network of objects ''by Cervantes''&lt;br /&gt;
* '''Functional Programming (in Turing!)''' - Passing and returning anonymous functions ''by Cervantes''&lt;br /&gt;
&lt;br /&gt;
== Extras ==&lt;br /&gt;
&lt;br /&gt;
=== Graphics ===&lt;br /&gt;
&lt;br /&gt;
* '''Basic Graphics''' - Make your program look nice ''by Asok''&lt;br /&gt;
* '''Fonts and locating put''' - Make your text look nice ''by basketball4ever''&lt;br /&gt;
* '''[[Turing_Eliminate_Flickering|View.Set and View.Update]]''' - Configuring the run window and eliminating animation flickering ''by Clayton''&lt;br /&gt;
* '''Windows''' - Managing the window(s) your program run(s) in ''by Delos''&lt;br /&gt;
* '''Pictures''' - Import your own .bmp's and .jpg's ''by Hacker Dan''&lt;br /&gt;
* '''RGB''' - Create your own colours as you need them ''by TheZsterBunny''&lt;br /&gt;
* '''Intro to 3D''' - Project a 3D world onto the 2D computer screen ''by Windsurfer''&lt;br /&gt;
* '''GUI (Graphical User Interface)''' - Make clickable buttons ''by Recneps''&lt;br /&gt;
&lt;br /&gt;
=== Advanced Input ===&lt;br /&gt;
&lt;br /&gt;
* '''More advanced input''' - getch, Input.KeyDown, Mouse.Where ''by DanShadow''&lt;br /&gt;
* '''Input.KeyDown''' - in more detail ''by Tony''&lt;br /&gt;
* '''Mouse.Where''' - some more detail ''by Hacker Dan''&lt;br /&gt;
&lt;br /&gt;
=== Other Stuff ===&lt;br /&gt;
&lt;br /&gt;
* '''The Dir Module''' - Traverse and manipulate directories ''by jamonathin''&lt;br /&gt;
* '''The Net Module''' - Use Turing and the internet together by ''DanShadow''&lt;br /&gt;
* '''Collision Detection''' - Determine when two objects collide--a necessity for games ''by richcash''&lt;br /&gt;
* '''Whatdotcolour''' - Another approach to collision detection and other useful things&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
&lt;br /&gt;
Original walkthrough by [[Cervantes]].&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=Turing_Walkthrough</id>
		<title>Turing Walkthrough</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Turing_Walkthrough"/>
				<updated>2008-10-12T14:59:52Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: /* Essentials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Essentials ==&lt;br /&gt;
&lt;br /&gt;
* '''The Basics''' - Introduction to programming, commenting, basic output, variables, and basic input ''by Cervantes''&lt;br /&gt;
* '''If structures''' - Write code that can make decisions ''by Cervantes''&lt;br /&gt;
* '''Functions and Procedures''' - Organize your code into sections and call them at will; introduction to recursion ''by Cervantes''&lt;br /&gt;
* '''Loops and For loops''' - To repeat sections of code over and over ''by Cervantes''&lt;br /&gt;
* '''[[Turing_String_Manipulation|String Manipulation]]''' ''by Cervantes''&lt;br /&gt;
* '''Index''' - searching through a string ''by AsianSensation''&lt;br /&gt;
* '''Records and Types''' - Create new, compound data types ''by AsianSensation''&lt;br /&gt;
* '''Arrays''' - Mass variables ''by Clayton and Cervantes''&lt;br /&gt;
* '''Enumerated Types''' - Create an indexing system that is readable and understandable ''by Clayton''&lt;br /&gt;
* '''[[Turing_File_IO|File Input/Output]]''' - Reading and writing data from/to text files ''by Clayton''&lt;br /&gt;
* '''Bitwise Operators''' - Experiment with binary, getting closer to lowlevel programming ''by Zylum''&lt;br /&gt;
* '''Recursion''' - Subroutines that call themselves can achieve amazing results ''by Zylum''&lt;br /&gt;
* '''Modules''' - Collections of procedures and functions ''by Delos''&lt;br /&gt;
* '''Pointers''' - Referencing memory and creating linked lists ''by lyam_kaskade''.&lt;br /&gt;
* '''Classes Part I''' - Make your own objects ''by Cervantes''&lt;br /&gt;
* '''Classes Part II''' - Create objects that interact with each other ''by Cervantes''&lt;br /&gt;
* '''Classes Part III''' - Inheritance and Polymorphism to create a network of objects ''by Cervantes''&lt;br /&gt;
* '''Functional Programming (in Turing!)''' - Passing and returning anonymous functions ''by Cervantes''&lt;br /&gt;
&lt;br /&gt;
== Extras ==&lt;br /&gt;
&lt;br /&gt;
=== Graphics ===&lt;br /&gt;
&lt;br /&gt;
* '''Basic Graphics''' - Make your program look nice ''by Asok''&lt;br /&gt;
* '''Fonts and locating put''' - Make your text look nice ''by basketball4ever''&lt;br /&gt;
* '''View.Set and View.Update''' - Configuring the run window and eliminating animation flickering ''by Clayton''&lt;br /&gt;
* '''Windows''' - Managing the window(s) your program run(s) in ''by Delos''&lt;br /&gt;
* '''Pictures''' - Import your own .bmp's and .jpg's ''by Hacker Dan''&lt;br /&gt;
* '''RGB''' - Create your own colours as you need them ''by TheZsterBunny''&lt;br /&gt;
* '''Intro to 3D''' - Project a 3D world onto the 2D computer screen ''by Windsurfer''&lt;br /&gt;
* '''GUI (Graphical User Interface)''' - Make clickable buttons ''by Recneps''&lt;br /&gt;
&lt;br /&gt;
=== Advanced Input ===&lt;br /&gt;
&lt;br /&gt;
* '''More advanced input''' - getch, Input.KeyDown, Mouse.Where ''by DanShadow''&lt;br /&gt;
* '''Input.KeyDown''' - in more detail ''by Tony''&lt;br /&gt;
* '''Mouse.Where''' - some more detail ''by Hacker Dan''&lt;br /&gt;
&lt;br /&gt;
=== Other Stuff ===&lt;br /&gt;
&lt;br /&gt;
* '''The Dir Module''' - Traverse and manipulate directories ''by jamonathin''&lt;br /&gt;
* '''The Net Module''' - Use Turing and the internet together by ''DanShadow''&lt;br /&gt;
* '''Collision Detection''' - Determine when two objects collide--a necessity for games ''by richcash''&lt;br /&gt;
* '''Whatdotcolour''' - Another approach to collision detection and other useful things&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
&lt;br /&gt;
Original walkthrough by [[Cervantes]].&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=Turing_Walkthrough</id>
		<title>Turing Walkthrough</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=Turing_Walkthrough"/>
				<updated>2008-10-12T14:57:58Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: /* Extras */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Essentials ==&lt;br /&gt;
&lt;br /&gt;
* '''The Basics''' - Introduction to programming, commenting, basic output, variables, and basic input ''by Cervantes''&lt;br /&gt;
* '''If structures''' - Write code that can make decisions ''by Cervantes''&lt;br /&gt;
* '''Functions and Procedures''' - Organize your code into sections and call them at will; introduction to recursion ''by Cervantes''&lt;br /&gt;
* '''Loops and For loops''' - To repeat sections of code over and over ''by Cervantes''&lt;br /&gt;
* '''[[Turing_String_Manipulation|String Manipulation]]''' ''by Cervantes''&lt;br /&gt;
* '''Index''' - searching through a string ''by AsianSensation''&lt;br /&gt;
* '''Records and Types''' - Create new, compound data types ''by AsianSensation''&lt;br /&gt;
* '''Arrays''' - Mass variables ''by Freakman and Cervantes''&lt;br /&gt;
* '''Enumerated Types''' - Create an indexing system that is readable and understandable ''by Freakman''&lt;br /&gt;
* '''[[Turing_File_IO|File Input/Output]]''' - Reading and writing data from/to text files ''by Freakman''&lt;br /&gt;
* '''Bitwise Operators''' - Experiment with binary, getting closer to lowlevel programming ''by Zylum''&lt;br /&gt;
* '''Recursion''' - Subroutines that call themselves can achieve amazing results ''by Zylum''&lt;br /&gt;
* '''Modules''' - Collections of procedures and functions ''by Delos''&lt;br /&gt;
* '''Pointers''' - Referencing memory and creating linked lists ''by lyam_kaskade''.&lt;br /&gt;
* '''Classes Part I''' - Make your own objects ''by Cervantes''&lt;br /&gt;
* '''Classes Part II''' - Create objects that interact with each other ''by Cervantes''&lt;br /&gt;
* '''Classes Part III''' - Inheritance and Polymorphism to create a network of objects ''by Cervantes''&lt;br /&gt;
* '''Functional Programming (in Turing!)''' - Passing and returning anonymous functions ''by Cervantes''&lt;br /&gt;
&lt;br /&gt;
== Extras ==&lt;br /&gt;
&lt;br /&gt;
=== Graphics ===&lt;br /&gt;
&lt;br /&gt;
* '''Basic Graphics''' - Make your program look nice ''by Asok''&lt;br /&gt;
* '''Fonts and locating put''' - Make your text look nice ''by basketball4ever''&lt;br /&gt;
* '''View.Set and View.Update''' - Configuring the run window and eliminating animation flickering ''by Clayton''&lt;br /&gt;
* '''Windows''' - Managing the window(s) your program run(s) in ''by Delos''&lt;br /&gt;
* '''Pictures''' - Import your own .bmp's and .jpg's ''by Hacker Dan''&lt;br /&gt;
* '''RGB''' - Create your own colours as you need them ''by TheZsterBunny''&lt;br /&gt;
* '''Intro to 3D''' - Project a 3D world onto the 2D computer screen ''by Windsurfer''&lt;br /&gt;
* '''GUI (Graphical User Interface)''' - Make clickable buttons ''by Recneps''&lt;br /&gt;
&lt;br /&gt;
=== Advanced Input ===&lt;br /&gt;
&lt;br /&gt;
* '''More advanced input''' - getch, Input.KeyDown, Mouse.Where ''by DanShadow''&lt;br /&gt;
* '''Input.KeyDown''' - in more detail ''by Tony''&lt;br /&gt;
* '''Mouse.Where''' - some more detail ''by Hacker Dan''&lt;br /&gt;
&lt;br /&gt;
=== Other Stuff ===&lt;br /&gt;
&lt;br /&gt;
* '''The Dir Module''' - Traverse and manipulate directories ''by jamonathin''&lt;br /&gt;
* '''The Net Module''' - Use Turing and the internet together by ''DanShadow''&lt;br /&gt;
* '''Collision Detection''' - Determine when two objects collide--a necessity for games ''by richcash''&lt;br /&gt;
* '''Whatdotcolour''' - Another approach to collision detection and other useful things&lt;br /&gt;
&lt;br /&gt;
== Credits ==&lt;br /&gt;
&lt;br /&gt;
Original walkthrough by [[Cervantes]].&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	<entry>
		<id>http://wiki.compsci.ca/index.php?title=University_of_Waterloo</id>
		<title>University of Waterloo</title>
		<link rel="alternate" type="text/html" href="http://wiki.compsci.ca/index.php?title=University_of_Waterloo"/>
				<updated>2007-11-27T02:25:44Z</updated>
		
		<summary type="html">&lt;p&gt;Clayton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The University of Waterloo (UW) is an excellent University in Ontario, and is home to many [[CompSci.ca]] members, including:&lt;br /&gt;
&lt;br /&gt;
*[[Tony]] -&amp;gt; [[Mechatronics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Brenn]] -&amp;gt; [[Mechatronics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[lyam_kaskade]] -&amp;gt; [[Mechatronics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Martin]] -&amp;gt; [[applied mathematics|Applied Mathematics]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Cornflake]] -&amp;gt; [[computer science|Computer Science]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[bugzpodder]] -&amp;gt; [[computer science|Computer Science]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Jiran]] -&amp;gt; [[computer science|Computer Science]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Cervantes]] -&amp;gt; Mathematical Physics&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Hikaru79]] -&amp;gt; [[computer science|Computer Science]]&amp;lt;/li&amp;gt;&lt;br /&gt;
*[[Krabjuice]] -&amp;gt; unknown&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
UW is a [[CompSci.ca]] breeding grounds.  [[Clayton]] plans to attend in 2008 and [[axej]] plans to attend in the fall of 2009.&lt;br /&gt;
&lt;br /&gt;
== Programs Offered at the University ==&lt;br /&gt;
Some interesting programs of study offered at the University of Waterloo include the following:&lt;br /&gt;
&lt;br /&gt;
[[Mechatronics]] Engineering [http://www.mechatronics.uwaterloo.ca/home.html]&lt;br /&gt;
&lt;br /&gt;
[[computer science|Computer Science]] [http://www.cs.uwaterloo.ca/]&lt;br /&gt;
&lt;br /&gt;
[[applied mathematics|Applied Math]] [http://www.math.uwaterloo.ca/AM_Dept/index.shtml]&lt;br /&gt;
&lt;br /&gt;
[[Computational Mathematics]] [http://www.math.uwaterloo.ca/navigation/CompMath/]&lt;br /&gt;
&lt;br /&gt;
== Other Facts ==&lt;br /&gt;
Annually hosts the [[CCC]] programming [[contests|contest]] as well as the [[Euclid]] math contest.&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
[http://www.uwaterloo.ca/ University of Waterloo website]&lt;/div&gt;</summary>
		<author><name>Clayton</name></author>	</entry>

	</feed>