Sen descrición

Steve Thielemann 41f60d3c65 Updating docs with examples of usage. %!s(int64=3) %!d(string=hai) anos
examples 23f71ba696 Updated door_example. Build the example. %!s(int64=3) %!d(string=hai) anos
utf8 b3078b0478 Updated: Fixed issues with unicode characters. %!s(int64=4) %!d(string=hai) anos
.gitignore 344de75252 Ignore some dirs. %!s(int64=4) %!d(string=hai) anos
CMakeLists.txt 23f71ba696 Updated door_example. Build the example. %!s(int64=3) %!d(string=hai) anos
LICENSE d6f2177d45 Added MIT License %!s(int64=3) %!d(string=hai) anos
LICENSE_anyoption e250135c45 Initial commit. %!s(int64=4) %!d(string=hai) anos
README.md 41f60d3c65 Updating docs with examples of usage. %!s(int64=3) %!d(string=hai) anos
ansicolor.cpp ab39f6a9da Added ability to change fg/bg of ANSIColor object. %!s(int64=4) %!d(string=hai) anos
anyoption.cpp e250135c45 Initial commit. %!s(int64=4) %!d(string=hai) anos
anyoption.h e250135c45 Initial commit. %!s(int64=4) %!d(string=hai) anos
door.cpp 23f71ba696 Updated door_example. Build the example. %!s(int64=3) %!d(string=hai) anos
door.h 79fbc250eb Line supports move. %!s(int64=3) %!d(string=hai) anos
doxy.config 1c2da4fabf Adding googletest. %!s(int64=4) %!d(string=hai) anos
getkey.cpp 10714dc523 unique_ptr. %!s(int64=3) %!d(string=hai) anos
lines.cpp 79fbc250eb Line supports move. %!s(int64=3) %!d(string=hai) anos
make_docs.sh 23f71ba696 Updated door_example. Build the example. %!s(int64=3) %!d(string=hai) anos
panel.cpp 5f0547bcff Updated renderFunction to use append. %!s(int64=3) %!d(string=hai) anos
test-door.cpp 7c93da2368 Updated: Working panel.update(). %!s(int64=4) %!d(string=hai) anos
utf8.h b3078b0478 Updated: Fixed issues with unicode characters. %!s(int64=4) %!d(string=hai) anos
utf8cpp.html b3078b0478 Updated: Fixed issues with unicode characters. %!s(int64=4) %!d(string=hai) anos

README.md

Door++

Wecome to Door++, a modern BBS Door development kit written in C++

Getting Started

Clone the door++ project into a sub-directory of your project. In your project CmakeLists.txt file, add add_subdirectory(door++). Under the add_executable(your-door your-door.cpp) line, add target_link_libraries(your-door door++ pthread)`.

In main, create the door instance:

#include "door.h"

int main( int argc, char * argv[] ) {
    door::Door door("your-door", argc, argv);

    door << "Welcome to Door++" << door::nl;
}

Advanced Features of Door++

  • door::Line

    /*
    * Custom line rendering fuction.
    * This allows for the status to be one color, and the value to be another.
    * "Score: 500"  
    * "Score:" would be status color, "500" would be value color.
    */
    door::renderFunction statusValue(door::ANSIColor status,
                                 door::ANSIColor value) {
    door::renderFunction rf = [status,
                             value](const std::string &txt) -> door::Render {
    door::Render r(txt);
    size_t pos = txt.find(':');
    if (pos == std::string::npos) {
      for (char const &c : txt) {
        if (std::isdigit(c))
          r.append(value);
        else
          r.append(status);
      }
    } else {
      pos++;
      r.append(status, pos);
      r.append(value, txt.length() - pos);
    }
    return r;
    };
    return rf;
    }
    
    door::ANSIColor statusColor(door::COLOR::WHITE, door::COLOR::BLUE,
                            door::ATTR::BOLD);
    door::ANSIColor valueColor(door::COLOR::YELLOW, door::COLOR::BLUE,
                            door::ATTR::BOLD);
    door::renderFunction svRender = statusValue(statusColor, valueColor);
    
    // build the actual line here
    std::unique_ptr<door::Line> scoreLine = std::make_unique<door::Line>("Score: 0", 50);
    scoreLine->setRender(svRender);
    
    // Make the scoreLine automatically update when score changes.
    door::updateFunction scoreUpdate = [score](void) -> std::string {
    std::string text = "Score: ";
    text.append(std::to_string(score));
    return text;
    };
    
    scoreLine->setUpdater(scoreUpdate);
    
  • door::Panel

A Panel is a group of lines with a known position.

std::unique_ptr<door::Panel> panel = std::make_unique<door::Panel>(50);
panel->setStyle(door::BorderStyle::NONE);
// add lines to the panel
panel->addLines(std::move(scoreLine));

panel->set(5, 5);
panel->update();
door << panel;
  • door::Menu

A Panel that displays options for the user to select

// Define a menu starting at 5, 5 with width 25
door::Menu menu(5, 5, 25);

// Set border color
door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
m.setColor(border_color);

// Set the Menu Title
door::Line mtitle("Main Menu");
door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD);
mtitle.setColor(title_color);
mtitle.setPadding(" ", title_color);
m.setTitle(std::make_unique<door::Line>(mtitle), 1);

// Define colors for the menu

m.setRender(true, door::Menu::makeRender(
                  door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
                  door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
                  door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
                  door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));

m.setRender(false, door::Menu::makeRender(
                   door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
                   door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
                   door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
                   door::ATTR::BOLD),
                   door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE,
                   door::ATTR::BOLD)));

// Build the menu
// First char is [ char ], followed by the text.
// The arrow keys can be used to select the menu option, or
// hitting the character.

m.addSelection('P', "Play Cards");
m.addSelection('S', "View Scores");
m.addSelection('C', "Configure");
m.addSelection('H', "Help");
m.addSelection('A', "About this game");
m.addSelection('Q', "Quit");

int r;

// Render the menu and prompt for input
r = m.choose(door);

if (r < 0) {
    // timeout or out of time
}

if ( r == 1 ) {
    // Play Cards
}
...