Comments on: Maze creation in C# http://xnafan.net/2012/03/maze-creation-in-c/ XNA tutorials, code and games Fri, 10 Aug 2018 04:55:21 +0000 hourly 1 https://wordpress.org/?v=4.2.22 By: admin http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-387899 Mon, 31 Jul 2017 19:17:49 +0000 http://xnafan.net/?p=356#comment-387899 Great to hear you found it useful :-)
Cheers!

]]>
By: Julia http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-387850 Sun, 30 Jul 2017 07:02:40 +0000 http://xnafan.net/?p=356#comment-387850 That's more than great!

Thank you very much! Hope the information will be useful for your portal readers!
I'm very excited because Iā€™m doing c# online course now and Iā€™d tried your tutorial as well and I managed to do it)
Have a good day!

]]>
By: admin http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-380436 Sun, 05 Feb 2017 10:58:48 +0000 http://xnafan.net/?p=356#comment-380436 šŸ‘šŸ˜Š]]> Very glad to hear it was of use to you šŸ‘šŸ‘šŸ˜Š

]]>
By: ohiovr http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-380425 Sun, 05 Feb 2017 00:25:38 +0000 http://xnafan.net/?p=356#comment-380425 Thanks for this example. I'm teaching my nephew how to program with unity and this will really help. I converted it to run in unity obviously but it was such an easy conversion and does precisely what I want. Excellent work

]]>
By: carlos http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-143223 Fri, 20 Jun 2014 00:55:41 +0000 http://xnafan.net/?p=356#comment-143223 Excelente, funciona como lo necesitaba... muchas gracias

]]>
By: admin http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-102856 Wed, 12 Mar 2014 09:59:03 +0000 http://xnafan.net/?p=356#comment-102856 Hi Milor :)

If you look at the MazeCreator.ToString() method, you can see that it does almost what you want: convert the maze's state to a string.
If you change the output to what you want for the different values, you should have a multiline String representation of your maze, which you can then save using File.WriteAllText.

Kind regards - Jakob

]]>
By: admin http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-102383 Mon, 10 Mar 2014 14:27:37 +0000 http://xnafan.net/?p=356#comment-102383 Yup - I'll add some code to dump the maze to a txt file during this week :)
Thank you for the suggestion!

Kind regards - Jakob

]]>
By: admin http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-102379 Mon, 10 Mar 2014 14:23:28 +0000 http://xnafan.net/?p=356#comment-102379 Great to hear it was useful for you!
You're welcome :)

]]>
By: Milor http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-102367 Mon, 10 Mar 2014 13:30:55 +0000 http://xnafan.net/?p=356#comment-102367 I am downloading Code with sample project and rewrite, run perfect.

Thank you!

]]>
By: Milor http://xnafan.net/2012/03/maze-creation-in-c/comment-page-1/#comment-102357 Mon, 10 Mar 2014 12:31:11 +0000 http://xnafan.net/?p=356#comment-102357 Great!

Its posible extract to .txt

W = Wall
E = Excaved
S = Start
F = furtest point

]]>