Coder Social home page Coder Social logo

kprintf() ANSI Color Support about xyris HOT 3 CLOSED

Kfeavel avatar Kfeavel commented on July 26, 2024
kprintf() ANSI Color Support

from xyris.

Comments (3)

Kfeavel avatar Kfeavel commented on July 26, 2024

Related to #31

from xyris.

Kfeavel avatar Kfeavel commented on July 26, 2024

In order to implement escape codes (such as \033[31m for red), we'll need to add code in the initial printf state that checks for a \ and then looks at the next few characters. From there, we can add another switch statement for the code type (i.e. \033 (esc)), and then for the data afterwards. Once the color code has been determined (i.e. [31m (red)).

printf.cpp
Line: 105-121
/* begin scanning format specifier list */
    for (; *fmt; fmt++) {
        switch (state) {
            /* STATE 0: AWAITING % */
        case 0:
            if (*fmt != '%') /* not %... */
            {
                fn(*fmt, &ptr); /* ...just echo it */
                count++;
                break;
            }
            /* found %, get next char and advance state to check if next char is a flag */
            state++;
            fmt++;
            /* FALL THROUGH */
            /* STATE 1: AWAITING FLAGS (%-0) */
        case 1:

from xyris.

Kfeavel avatar Kfeavel commented on July 26, 2024

https://stackoverflow.com/questions/4842424/list-of-ansi-color-escape-sequences

from xyris.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.