Skip to main content

Drawing and Animating ASCII Art in C# Console

This is sample code for drawing ASCII art character in C# console.

Things to keep in mind :
  • Replace the variable var with any ASCII art you want to get drawn in console. 
  • Take care of [@],["] and [,] while replacing.

using System;

namespace Dotned.UI.Framework
{
    public class Arbit
    {
       
        public static void Main(String[] Args)
        {
            var arr = new[]
            {
                    @"      /$$$$$$                                      /$$     /$$       /$$                          ",
                    @"      /$$__  $$                                    | $$    | $$      |__/                         ",
                    @"     | $$  \__/  /$$$$$$  /$$$$$$/$$$$   /$$$$$$  /$$$$$$  | $$$$$$$  /$$ /$$$$$$$   /$$$$$$      ", 
                    @"     |  $$$$$$  /$$__  $$| $$_  $$_  $$ /$$__  $$|_  $$_/  | $$__  $$| $$| $$__  $$ /$$__  $$     ", 
                    @"      \____  $$| $$  \ $$| $$ \ $$ \ $$| $$$$$$$$  | $$    | $$  \ $$| $$| $$  \ $$| $$  \ $$     ", 
                    @"      /$$  \ $$| $$  | $$| $$ | $$ | $$| $$_____/  | $$ /$$| $$  | $$| $$| $$  | $$| $$  | $$     ", 
                    @"     |  $$$$$$/|  $$$$$$/| $$ | $$ | $$|  $$$$$$$  |  $$$$/| $$  | $$| $$| $$  | $$|  $$$$$$$     ", 
                    @"      \______/  \______/ |__/ |__/ |__/ \_______/   \___/  |__/  |__/|__/|__/  |__/ \____  $$     ", 
                    @"                                                                                    /$$  \ $$     ",
                    @"                                                                                   |  $$$$$$/     ", 
                    @"                                                                                    \______/      ",           
            };
            Console.WindowWidth = 160;
            Console.WriteLine("\n\n");
            foreach(string line in arr )
                Console.WriteLine(line);
            Console.ReadKey();

        }
    }
}
Above code will simply display ASCII art into console. To add animation , one sample code you can find below , All you need to do again is , replace var with you own ASCII var.


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Diagnostics;
using System.Threading;

namespace Dotned.UI.Framework
{
    public class Arbit
    {

        static void ConsoleDraw(IEnumerable<string> lines, int x, int y)
        {
            if (x > Console.WindowWidth) return;
            if (y > Console.WindowHeight) return;

            var trimLeft = x < 0 ? -x : 0;
            int index = y;

            x = x < 0 ? 0 : x;
            y = y < 0 ? 0 : y;

            var linesToPrint =
                from line in lines
                let currentIndex = index++
                where currentIndex > 0 && currentIndex < Console.WindowHeight
                select new
                {
                    Text = new String(line.Skip(trimLeft).Take(Math.Min(Console.WindowWidth - x, line.Length - trimLeft)).ToArray()),
                    X = x,
                    Y = y++
                };

            Console.Clear();
            foreach (var line in linesToPrint)
            {
                Console.SetCursorPosition(line.X, line.Y);
                Console.Write(line.Text);
            }
        }
        public static void Main(String[] Args)
        {
            var arr = new[]
            {
                    @"      /$$$$$$                                      /$$     /$$       /$$                          ",
                    @"      /$$__  $$                                    | $$    | $$      |__/                         ",
                    @"     | $$  \__/  /$$$$$$  /$$$$$$/$$$$   /$$$$$$  /$$$$$$  | $$$$$$$  /$$ /$$$$$$$   /$$$$$$      ", 
                    @"     |  $$$$$$  /$$__  $$| $$_  $$_  $$ /$$__  $$|_  $$_/  | $$__  $$| $$| $$__  $$ /$$__  $$     ", 
                    @"      \____  $$| $$  \ $$| $$ \ $$ \ $$| $$$$$$$$  | $$    | $$  \ $$| $$| $$  \ $$| $$  \ $$     ", 
                    @"      /$$  \ $$| $$  | $$| $$ | $$ | $$| $$_____/  | $$ /$$| $$  | $$| $$| $$  | $$| $$  | $$     ", 
                    @"     |  $$$$$$/|  $$$$$$/| $$ | $$ | $$|  $$$$$$$  |  $$$$/| $$  | $$| $$| $$  | $$|  $$$$$$$     ", 
                    @"      \______/  \______/ |__/ |__/ |__/ \_______/   \___/  |__/  |__/|__/|__/  |__/ \____  $$     ", 
                    @"                                                                                    /$$  \ $$     ",
                    @"                                                                                   |  $$$$$$/     ", 
                    @"                                                                                    \______/      ",           
            };
            Console.WindowWidth = 160;
            Console.WriteLine("\n\n");
            var maxLength = arr.Aggregate(0, (max, line) => Math.Max(max, line.Length));
            var x = Console.BufferWidth / 2 - maxLength / 2;
            for (int y = -arr.Length; y < Console.WindowHeight + arr.Length; y++)
            {
                ConsoleDraw(arr, x, y);
                Thread.Sleep(100);
            }
            Console.ReadKey();
        }
    }
}

Comments

Popular posts from this blog

Git – setting up a remote repository and doing an initial push

So, Lets firstly set-up the remote repository: Step 1 : ssh will get me access to console on remote pc, will ask for remote pc's password Step 2 : create a directory with extension .git Step 3 : go to created directory Step 4 : initialize git Step 5 : Update Server configuration for access from non local sites Step 6 : Exit from remote access                     $ssh username@ipaddressofserverpc                    $mkdir my_project.git                    $cd my_project.git                    $git init --bare                    $git update-server-info # If planning to serve via HTTP                    $exit Now, On local machine: Step 1 : go to local folder Step 2 : Initia...

Serializing & Deserializing JSON Object [ C++ ]

         This is sample code for serializing an object into json object and deserializing it back into earlier object. Things to keep in mind : While creating a json object, you have to write  json_object* jObj=json_object_new_object();   initializing it as   json_object* jObj ;   will not work. You need to install JSON library using  $ sudo apt-get install libjson0 libjson0-dev, Check path of installed json here   $ ls /usr/include/json You need to add json library to linker or compiler path. For ex. in Eclipse , Right click on project >> properties >> path and symbols. Add /usr/include/json in library paths & json in libraries. //============================================================================ // Name : JsonTest.cpp // Author : Manish Kumar Khedawat //============================================================================ #include <iostream> #include <json...