Recently I've been playing with VT100 escape sequences, and learning how to utilize them. This is the begining of what I've come up with.

I recycled my Rose petal algorithm, and implemented VT100 macros to move the cursor X;Y and to color the characters
Code: Select all
@echo off
set "moveCursor=<nul set /p "=[x;yH""
REM The important bit [x;yH
REM Contains ESC character[x;yH to position your cursor
%moveCursor:x;y=12;15%
echo [38;5;195mHello World[0m
Code: Select all
@echo off & setlocal enableDelayedExpansion
for /F %%a in ('echo prompt $E^| cmd') do set "ESC=%%a"
set /a "hei=50", "wid=50", "heiXwid=hei * wid"
set "moveCursor=<nul set /p "=!ESC