User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 08:59, 24 May 2018 (diff | hist) . . (+755) . . Bonus points at end of game for longest and highest scored words (current)
- 08:52, 24 May 2018 (diff | hist) . . (+1,148) . . N Bonus points at end of game for longest and highest scored words (Created page with "Create four local variables in the main game class. <syntaxhighlight lang="C#"> private static int highestScoredWord = 0; private static string highestScoredWordByPlayer = St...")
- 14:16, 16 November 2017 (diff | hist) . . (+2,480) . . N Ask user to confirm their word choice (Created page with "This isn't all that complicated a task, but for the sake of reliability I'll also explain how to do it. The logic needed for this, needs to be within the HaveTurn method with...") (current)
- 13:57, 16 November 2017 (diff | hist) . . (+3,406) . . N Allow players to add new words to the game (Created page with "There are 2 ways to do this: * Make the player add words to the aqawords text file (which admittedly isn't very programatic). * Create a method which is run after the 'aqawo...")
- 13:32, 16 November 2017 (diff | hist) . . (+12) . . Alert the User if aqawords.txt File is Missing
- 13:32, 16 November 2017 (diff | hist) . . (+2,049) . . N Alert the User if aqawords.txt File is Missing (Created page with "This is actually not as difficult as it may first appear. Firstly, let's take a glimpse at the LoadAllowedWords method which actually loads the contents of the AQAwords.txt fi...")
- 13:19, 16 November 2017 (diff | hist) . . (+1,229) . . N Allow players to skip and end their turn (Created page with "Quite simple, First we must add a new command: <syntaxhighlight lang="C#"> private static string GetChoice() { // Previous Commands Console.WriteLine(" press 8 t...")
- 09:10, 16 November 2017 (diff | hist) . . (+49) . . Section C 2018 (→Programming Structures / Theory) (current)
- 17:24, 15 November 2017 (diff | hist) . . (+95) . . If a player presses enter without typing a word it is an invalid move (→Method 01) (current)
- 14:09, 15 November 2017 (diff | hist) . . (+3,063) . . N Allow a player to buy a vowel for 10 points (Created page with "In all honesty, I'm unsure as to what this is asking. In perpetuity I feel there are three potential answers to what is being asked: * 1) It wants me to select a random tile...")
- 20:15, 14 November 2017 (diff | hist) . . (-152) . . If a player presses enter without typing a word it is an invalid move (→Method 01)
- 20:14, 14 November 2017 (diff | hist) . . (-953) . . If a player presses enter without typing a word it is an invalid move (→Method 01)
- 20:12, 14 November 2017 (diff | hist) . . (-3) . . Provide a method for the player to swap their entire hand (current)
- 20:10, 14 November 2017 (diff | hist) . . (-1) . . If a player enters a number not in the options it is treated as a word (→Original) (current)
- 20:08, 14 November 2017 (diff | hist) . . (-1) . . If a player enters a number not in the options it is treated as a word (→Oopsie daisy, I've re-invented the wheel)
- 20:08, 14 November 2017 (diff | hist) . . (+5,511) . . N If a player enters a number not in the options it is treated as a word (Created page with "==Original== The optimal solution for this IMO is to try and cast the input number to an integer and if said cast succeeds switch through all the integer options; in the off...")
- 19:29, 14 November 2017 (diff | hist) . . (+2,326) . . Provide a method for the player to swap 5 random tiles from their hand
- 19:20, 14 November 2017 (diff | hist) . . (+78) . . N Provide a method for the player to swap 5 random tiles from their hand (Created page with "To do this we must firstly add a new command to the GetChoice Method for this.")
- 19:05, 14 November 2017 (diff | hist) . . (+751) . . Create a method to list the words available within a given hand (→Print by Word Score)
- 19:01, 14 November 2017 (diff | hist) . . (-64) . . Create a method to list the words available within a given hand (→Print by Word Length)
- 18:58, 14 November 2017 (diff | hist) . . (+2,047) . . Create a method to list the words available within a given hand (→Print by Word Length)
- 18:38, 14 November 2017 (diff | hist) . . (+997) . . Create a method to list the words available within a given hand
- 18:31, 14 November 2017 (diff | hist) . . (-133) . . Create a method to list the words available within a given hand (Syntax prettifying)
- 18:24, 14 November 2017 (diff | hist) . . (+4,755) . . If a player presses enter without typing a word it is an invalid move (Improved + new solution)
- 17:47, 14 November 2017 (diff | hist) . . (-198) . . Provide a method for the player to swap their entire hand (Syntax prettifying)
- 17:45, 14 November 2017 (diff | hist) . . (-147) . . If the player spells a ten or more letter word, they should receive a 200 point bonus (Syntax prettifying) (current)
- 17:40, 14 November 2017 (diff | hist) . . (+4) . . m How would you increase the maximum size of a players hand (current)
- 17:40, 14 November 2017 (diff | hist) . . (0) . . m How would you increase the maximum size of a players hand
- 17:40, 14 November 2017 (diff | hist) . . (-277) . . How would you increase the maximum size of a players hand (Shortened + Simplfified + Completed)
- 19:34, 23 October 2017 (diff | hist) . . (+44) . . Object Orientated Programming
- 18:46, 23 October 2017 (diff | hist) . . (+10) . . Insert Queries (Changes keyword ambiguity)
- 13:24, 21 September 2017 (diff | hist) . . (+1,225) . . N LoadAllowedWords (Created page with "This method attempts to read the aqawords.txt file and convert each line into a viable word. Note that because the method is wrapped in a try catch statement with catch type a...")
- 13:16, 21 September 2017 (diff | hist) . . (+671) . . N DisplayTileValues (Created page with "This is quite the simple method, but I'll explain it nonetheless. The method loops through each KeyValuePair in the TileDictionary; A Dictionary which if u recall stores the c...")
- 13:11, 21 September 2017 (diff | hist) . . (+2,100) . . N CreateTileDirectory (Created page with "This may may be kind of bewildering to any who look at it with no previous knowledge of what this class does; a problem which isn't helped by the utter lack of documentation o...")
- 12:53, 21 September 2017 (diff | hist) . . (+408) . . N Main Section 2018 (Created page with "The main method initialises any default values, loads the allowed-words from a local static method (GetAllowedWords) & creates the tile directory. Then it starts a continual l...")
- 12:47, 21 September 2017 (diff | hist) . . (+763) . . N Remove (Created page with "This method is a quite inefficient Get method for the queue. Recall that a queue is a first-in first-out data structure, therefore a queue should always return the first value...")
- 12:41, 21 September 2017 (diff | hist) . . (+240) . . N Add (Created page with "Generates a new random number, converts it to it's corresponding Unicode/ASCII (not sure which encoding format) character and then appends it to the end of the queue. Note if...")
- 12:39, 21 September 2017 (diff | hist) . . (+81) . . N Show (Created page with "Outputs the contents of the queue instance to the standard console output stream.")
- 12:37, 21 September 2017 (diff | hist) . . (+112) . . N IsEmpty (Created page with "Pretty self explanatory, this method returns a bool indicating whether the queue instance has any values or not.")
- 19:34, 12 May 2017 (diff | hist) . . (+29) . . User:M0hk4l3 (→External References) (current)
- 11:43, 11 May 2017 (diff | hist) . . (0) . . N File:PPC6B.PNG (current)
- 11:37, 11 May 2017 (diff | hist) . . (0) . . N File:PPC21.PNG (current)
- 11:37, 11 May 2017 (diff | hist) . . (0) . . N File:PPC20.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC19.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC18.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC17.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC16.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC15.PNG (current)
- 11:36, 11 May 2017 (diff | hist) . . (0) . . N File:PPC14.PNG (current)
- 11:35, 11 May 2017 (diff | hist) . . (0) . . N File:PPC13.PNG (current)
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)