Create your own text control codes: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{draft task}} {{task|String manipulation}} A control code is a text character or sequence of characters with a special meaning that, rather than print a text character to th...")
 
(8086 Assembly solution)
Line 1: Line 1:
{{draft task}}
{{draft task}}
{{task|String manipulation}}
{{task|Text processing}}


A control code is a text character or sequence of characters with a special meaning that, rather than print a text character to the terminal or screen, instructs the computer to do something text-related. Examples include:
A control code is a text character or sequence of characters with a special meaning that, rather than print a text character to the terminal or screen, instructs the computer to do something text-related. Examples include:
Line 28: Line 28:
(This is a draft task for now because I don't know if anything other than assembly can do this.)
(This is a draft task for now because I don't know if anything other than assembly can do this.)
<br><br>
<br><br>

=={{header|8086 Assembly}}==
In languages where you have to write your own print function, this task is relatively straightforward. [[MS-DOS]] has a "PrintString" function built-in, but this example will use a custom one with its own control codes. Currently this print function supports two types of control codes beyond the standard ones: a set of control codes that change the text color, and one that starts a new line with a specified number of spaces.

(Generally speaking, the implementation below isn't the best way to do it for compatibility reasons, since you end up sacrificing the ability to print certain characters. It's usually better to have one escape character and then the character after it becomes the control code. That way you only sacrifice one character instead of dozens. And technically you don't even lose the escape character since it can always escape itself by doubling it up.)

The routine below is called repeatedly by a routine named <code>PrintString_Color</code> until the null terminator is read.
<lang asm>PrintChar_Color: ;Print AL to screen
push dx
push ax
mov dx,8F80h
call CompareRange8 ;sets carry if 80h <= al <= 8Fh, clears carry otherwise
jc isColorCode
cmp al,90h
jne skipCCR_Color
call CustomCarriageReturn ;prints new line, then moves cursor a variable amount of spaces forward.
;this variable is set prior to printing a string that needs it.
jmp done_PrintChar_Color
skipCCR_Color:
mov ah,0Eh
int 10h ;prints character AL to screen, with the ink color stored in BL.
jmp done_PrintChar_Color
isColorCode:
and al,01111111b ;clear bit 7 to convert to VGA colors.
mov bl,al ;text from this point forward will use this color.
done_printChar_Color:
pop ax
pop dx
ret</lang>

Revision as of 13:54, 2 October 2021

Create your own text control codes is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.
Task
Create your own text control codes
You are encouraged to solve this task according to the task description, using any language you may know.

A control code is a text character or sequence of characters with a special meaning that, rather than print a text character to the terminal or screen, instructs the computer to do something text-related. Examples include:

  • NUL (ASCII 0) = The null terminator. Most programming languages silently place this at the end of a string so that the print function knows when to stop.
  • \n (New Line) = This tells the print function to start a new line. Older computers don't have this, rather they use an ASCII 13 (carriage return) followed by an ASCII 10 (line feed).
  • \ (Escape Character) = Any control code placed directly after the escape character loses is special meaning and is printed as-is.
  • %d = Insert a base 10 numeral into the string. The value is loaded from a variable specified after the string, separated by commas.

The C code below shows the %d control code in action: <lang C>int foo = 1; int bar = 2; int baz = foo + bar; printf("%d plus %d is: %d",foo,bar,baz); //outputs "1 plus 2 is: 3"</lang>


Task

Add a new control code to your language's standard print function, which does some sort of text related task that is not already built into the language. Have the standard print function print a string that uses that code, and display the output. What the control code actually does is up to you, but some examples include:

  • Changing the color of the text
  • Starting a new line at a custom location, without padding the string with blank spaces


If the language allows, try to make something entirely new that isn't just a macro of existing control codes combined to produce a trivial result (e.g. \n\n\n\n for four new lines would be trivial)

If your language doesn't allow you to modify the standard print function, note it. (This is a draft task for now because I don't know if anything other than assembly can do this.)

8086 Assembly

In languages where you have to write your own print function, this task is relatively straightforward. MS-DOS has a "PrintString" function built-in, but this example will use a custom one with its own control codes. Currently this print function supports two types of control codes beyond the standard ones: a set of control codes that change the text color, and one that starts a new line with a specified number of spaces.

(Generally speaking, the implementation below isn't the best way to do it for compatibility reasons, since you end up sacrificing the ability to print certain characters. It's usually better to have one escape character and then the character after it becomes the control code. That way you only sacrifice one character instead of dozens. And technically you don't even lose the escape character since it can always escape itself by doubling it up.)

The routine below is called repeatedly by a routine named PrintString_Color until the null terminator is read. <lang asm>PrintChar_Color: ;Print AL to screen push dx push ax mov dx,8F80h call CompareRange8 ;sets carry if 80h <= al <= 8Fh, clears carry otherwise jc isColorCode cmp al,90h jne skipCCR_Color call CustomCarriageReturn ;prints new line, then moves cursor a variable amount of spaces forward.

                                                 ;this variable is set prior to printing a string that needs it.

jmp done_PrintChar_Color skipCCR_Color: mov ah,0Eh int 10h ;prints character AL to screen, with the ink color stored in BL. jmp done_PrintChar_Color isColorCode: and al,01111111b ;clear bit 7 to convert to VGA colors. mov bl,al ;text from this point forward will use this color. done_printChar_Color: pop ax pop dx ret</lang>