working on a game currently, games ok I guess, would like to make it better. here list of questions quick ones I hope
1. Whenever I see symbols like "ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ" in a batch script sometimes they turn into lines or shapes but then again
sometimes they just look like random charecters, depending on the game I open, including if I copy and past them into mine I was wondering why that is.
2. one of my biggest concerns is something I've been searching all over the web for a week or two. Can you run a moving screen animation, in other words.
Can you create animation that executes multiple lines at the same time
example 1
line 1 ....o.. line 1 ...o...
line 2 ...o... line 2 ..o....
line 3 ..o.... line 3 .o.....
line 4 .o..... line 4 o...…
goto :2 goto:3
an actual working example of it being done on one command line is
for /f %%A in ('copy /Z "%~dpf0" nul') do set "CR=%%A"
<nul set/p"=[......]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[3.....]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[34....]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[342...]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[342d..]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[342do.]!CR!"
powershell Start-Sleep -m 100 >nul
<nul set/p"=[342doc]!CR!"
powershell Start-Sleep -m 100 >nul
in the example the O's have moved over one spot, is it possible to do this on multiple command lines at the same time to create what looks like an animation
using the entire screen?
thank you in advance for any help
NEWBIE HERE :)
Moderator: DosItHelp
Re: NEWBIE HERE :)
Perhaps you would like to review my Tetris game, or its Tetris in color version, or my Viboras.bat in color version of snake game...
Antonio
Antonio
Re: NEWBIE HERE :)
The computer only is able to store data as a sequence of bytes, while you want to store text using an editor, so multiple mappings are needed to load/save such data.Saladman wrote: ↑20 Nov 2019 16:521. Whenever I see symbols like "ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ" in a batch script sometimes they turn into lines or shapes but then again
sometimes they just look like random charecters, depending on the game I open, including if I copy and past them into mine I was wondering why that is.
Typically there are (at least) three different mappings:
- A mapping from a filename to a file (so you can access its data).
- a codepage that translates the bytestream in the file to a stream of characters (windows typically uses "UTF 16 le"), and
- a font that maps the stream of characters to an image.
In western european countries Windows typically uses codepage 1252 (also called "Latin I"), while the dos codepage is country-specific such as codepage 437 in the US and 850 in Germany.
Some Editors (like MS "Notepad.exe") are using the default windows codepage, but others (might be able to) use a different one.
In the sample case you are giving (a bunch of 'Í' characters) the following happens:
Within Nodepad you insert the character U+00CD (= "LATIN CAPITAL LETTER I WITH ACUTE") which glyph is 'Í'.
When you save your (batch) text document that character is encoded using the codepage 1252 so the file stores the byte 0xCD (hexadecmal notation).
When you are executing that batch, the cmd.exe initially is using codepage 437 (in case you are using a typical US windows installation).
Therefore the byte 0xCD is decoded into the character U+2550 ("BOX DRAWINGS DOUBLE HORIZONTAL") which is mapped to the glyph '═'.
You may change the codepage the cmd.exe is currently using by the command "chcp" (see "chcp /?" for more).
If you want to draw to the entire screen, then you can't use the "echo"-command, so you are stuck with the command "set /p".
If you only want to draw to any line except the last one, then echo is also okay.
There are two different general approaches (i think Aacini has linked examples for both):
- (Use cls to avoid scrolling and) Redraw the entire screen every time something has changed, or
- redraw only the changing parts, which (at the moment) only can be done in Windows 10 using VT100 codes (with disabled "Legacy console").
A reduced (nearly minimum) example for the second part is something like that (untested):
Code: Select all
@echo off
setlocal enableExtensions enableDelayedExpansion
for /f %%a in ('echo prompt $E^| cmd') do set "ESC=%%a"
set length=32
rem 01234567890123456789012345678901
set "data1= sample line 01 "
set "data2= sample line 02 "
set "data3= sample line 03 "
set "line1=%data1%%data1%"
set "line2=%data2%%data2%"
set "line3=%data3%%data3%"
set /a "speed1=-1, speed2=+1, speed3=+2"
set /a "delta1=0, delta2=0, delta3=0"
cls
:: hide cursor
echo(%ESC%[?25l
for /l %%a in (1, 1, 64) do (
for /f %%b in ("!delta1!") do <nul set /p "=%ESC%[10;20H!line1:~%%~b,20!
for /f %%b in ("!delta2!") do <nul set /p "=%ESC%[11;20H!line2:~%%~b,20!
for /f %%b in ("!delta3!") do <nul set /p "=%ESC%[12;20H!line3:~%%~b,20!
for %%b in (1 2 3) do set /a "delta%%~b=(length+delta%%~b+speed%%~b)%%length"
for /l %%b in (1, 1, 3000) do rem:
)
:: show cursor
echo(%ESC%[?25h
goto :eof
Re: NEWBIE HERE :)
I like your wonderful minimum animation, penpen