c++ - 输出流中的第一个字符被该流中删除的最后一个字符替换。为什么会这样?

标签 c++ linux

计划的目标:

该程序是一个刽子手游戏,它从我们的太阳系中获取行星列表,将其保存到一个数组中,然后从数组中随机选择一个单词,然后在棋盘上打印该单词的两个字母。该程序在windows环境下运行完美,但在linux上运行时失败。

问题:

程序用该流的最后一个字符替换输出流中的第一个字符。将单词打印在黑板上时以及在猜对或猜错时显示单词时都会发生这种情况。

例如: word = 火星

对于 6 个错误的猜测,它应该被打印出来,可惜你没有猜对。这是“火星”。

相反,它会打印:“糟糕,你没猜对。它是“火星”

文件如下:

wordlist.yx:

Mercury
Venus
Earth
Mars
Jupiter
Saturn
Uranus
Neptune
Pluto

刽子手.h:

#pragma once
#include <iostream>
using namespace std;

//  Check for OS
#ifdef _WIN32
    #define SYS "MS"
#else
    #define SYS "LINUX"
#endif

class Hangman {
private:
    int version = 3;
    string release_date = "01/05/2016";
    int &v = version;
    string &r = release_date;
    static const int WORDLIST_SIZE = 10;
    string wordlist[WORDLIST_SIZE];
    string word, hidden_word, wordfile = {"wordlist.yx"};
    int word_length, tries_left;
    bool is_match;

public:
    Hangman();
    ~Hangman();

    //attributes
    string user_input, arch;
    char choice;

    //  Game functionality methods
    void printMenu(Hangman &);
    void info(Hangman &) const;
    void startGame(Hangman &);
    void reset();
    void getWordlist();
    void getWordAndSetHidden();
    int getTries();
    void printHangman(int);
    void printBoard();
    void getInput(Hangman &);
    int validateInput(char);
    void decideFate(Hangman &);
    void decision(Hangman &);

    // Invalid input and screen clearing methods
    void invalidInput1(Hangman &, char &);
    void invalidInput2(Hangman &, string &);
    void cls() const;
};

刽子手.cpp:

#include <iostream>
#include <cstdlib>
#include <ctime>
#include <fstream>
#include <limits>
#include <algorithm>
#include <string>
#include "Hangman.h"
using namespace std;

//Constructor
Hangman::Hangman(){
    //Get's OS
    // Microsoft
    if(SYS == "MS"){
        arch = "cls";
    } else{
        //linux, unix, OSX
        arch = "clear";
    }
    hidden_word = "";
    tries_left = 6;
}

//  De-constructor
Hangman::~Hangman(){
    //Destroy objects
}

//  Menu Options
void Hangman::printMenu(Hangman &s){
    cls();
    cout << " _____Hangman (v7)_____ " << endl;
    cout << "|                      |" << endl;
    cout << "|       Play      - P  |" << endl;
    cout << "|       Info      - I  |" << endl;
    cout << "|       Quit      - Q  |" << endl;
    cout << "------------------------" << endl;
    cout << "Choice: ";
    getline(cin, user_input);
    //  Pass first character of string to char
    choice = user_input[0];
    switch(choice){
        case 'p':
        case 'P':
            startGame(s);
            break;

        case 'i':
        case 'I':
            info(s);
        break;

        case 'q':
        case 'Q':
            cls();
            cout << "Thank you for playing..." << endl;
            exit(EXIT_SUCCESS);
            break;
        default:
            invalidInput1(s, choice);
    }
}

void Hangman::info(Hangman &m) const{
    string ic;
    cls();
    cout << "+--------------------------------------------------------------------+\n"
         << "|                        Hangman Instructions                        |\n"
         << "+--------------------------------------------------------------------+\n"
         << "| This Hangman game is played by entering a guessed letter at a time.|\n"
         << "| 6 wrong guesses are given by default and decrements by 1 (one) on  |\n"
         << "| each wrong guess.                                                  |\n"
         << "+--------------------------------------------------------------------+\n"
         << "|                          In-game options                           |\n"
         << "+--------------------------------------------------------------------+\n"
         << "| restart  -   Start a new game                                      |\n"
         << "| menu     -   Display main menu                                     |\n"
         << "| quit     -   Exit game                                             |\n"
         << "+--------------------------------------------------------------------+\n"
         << "|                          Game Information                          |\n"
         << "+--------------------------------------------------------------------+\n"
         << "| Version:        " << v << "                                                  |\n"
         << "| Date:       " <<r<< "                                             |\n"
         << "+--------------------------------------------------------------------+\n"
         << "|                               Author                               |\n"
         << "+--------------------------------------------------------------------+\n"
         << "| Philan James (Zoutiyx)                                             |\n"
         << "| zoutiyx@gmail.com                                                  |\n"
         << "+--------------------------------------------------------------------+\n\n";
    cout << "Press enter to close... ";
    getline(cin, ic);
    m.printMenu(m);
}



void Hangman::startGame(Hangman &h){
    cls();
    h.reset();
    h.getWordlist();
    h.getWordAndSetHidden();

    h.decideFate(h);
    do {
        h.printHangman(h.getTries());
        h.printBoard();
        h.getInput(h);
        h.decideFate(h);
    } while(h.getTries() != 0);
}

//Gets the wordlist from a file and stores it into an array
void Hangman::getWordlist(){
    fstream in_words(wordfile, ios::in);
    if(!in_words.is_open()){
        cerr << "Error 0: " << wordfile << " isn't found in current directory!\n";
    } else{
        for(int i = 0; (i < WORDLIST_SIZE - 1) && !in_words.eof(); i++){
            getline(in_words, *(wordlist + i), '\n');
        }
    }
    in_words.close();
}

void Hangman::getWordAndSetHidden(){
    srand(time(NULL));
    int word_index, p1, p2;
    word_index = rand() % (WORDLIST_SIZE - 1) + 0;
    word = wordlist[word_index];

    //  Sets the hidden word letters to underscores
    for(unsigned int i = 0; i < word.length(); i++){
        if(word[i] == ' ') {
            hidden_word.push_back(' ');
        } else {
            hidden_word.push_back('_');
        }
    }

    //selecting the random two indexes of the word
    p1 = rand() % word.length();
    p2 = rand() % word.length();
    while (p1 == p2 || p2 == p1){
        p1 = rand() % word.length();
        p2 = rand() % word.length();
    }

    // Assigning the letter to the corresponding index
    for(int i = 0; i < (int)word.length(); i++){
        if (i == p1){
            hidden_word[i] = word[i];
        } else if( i == p2){
            hidden_word[i] = word[i];
        }

        //  If a certain letter is the same as the on at the p1 or p2,
        //  It is also printed on the board, making it more than (2) default letters
        if (tolower(word[p1]) == tolower(word[i])){
            hidden_word[i] = word[i];
        }
        if (tolower(word[p2]) == tolower(word[i])){
            hidden_word[i] = word[i];
        }
    }
}

//  Get lives remaining
int Hangman::getTries(){
    return tries_left;
}

//  Print's hangman state based on lives left
void Hangman::printHangman(int ll){
    cls();
    cout << "Planets in our solor system...\n\n";
    cout << "Tries left: " << tries_left << endl;
    switch (ll){
        case 6:
            cout << "    |----|   " << endl;
            cout << "    |        " << endl;
            cout << "    |        " << endl;
            cout << "    |        " << endl;
            cout << "    |        " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 5:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |        " << endl;
            cout << "    |        " << endl;
            cout << "    |        " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 4:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |    |   " << endl;
            cout << "    |    |   " << endl;
            cout << "    |        " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 3:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |   /|   " << endl;
            cout << "    |    |   " << endl;
            cout << "    |        " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 2:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |   /|\\ " << endl;
            cout << "    |    |   " << endl;
            cout << "    |        " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 1:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |   /|\\ " << endl;
            cout << "    |    |   " << endl;
            cout << "    |   /    " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;

        case 0:
            cout << "    |----|   " << endl;
            cout << "    |    0   " << endl;
            cout << "    |   /|\\ " << endl;
            cout << "    |    |   " << endl;
            cout << "    |   / \\ " << endl;
            cout << "____|____    " << endl;
            cout << endl;
            break;
        }
}

//  Display hidden word
void Hangman::printBoard(){
    for(unsigned int i = 0; i < hidden_word.length(); i++){
        if(word[i] == ' '){
           cout << word[i];
        } else if(i != hidden_word.length()){
            cout << hidden_word[i] << " ";
        } else{
            cout << hidden_word[i];
        }
    }
    cout << endl << endl;
}

//  Get letter choice and assign position 0 to character
void Hangman::getInput(Hangman &c){
    cout << "Letter choice: ";
    getline(cin, user_input);
    transform(user_input.begin(), user_input.end(),
              user_input.begin(), ::tolower);
    if(user_input == "restart"){
        c.reset();
        c.startGame(c);
    } else if(user_input == "menu"){
        printMenu(c);
    } else if(user_input == "quit"){
        cout << "\nThank you for playing...\n";
        exit(EXIT_SUCCESS);
    } else{
        choice = user_input[0];
        user_input = "";
        validateInput(choice);
    }
}

//  test character for validity
int Hangman::validateInput(char choice){
        for(unsigned int i = 0; i < hidden_word.length(); i++){

            //Checks if entered character is already on the board
            if(toupper(choice) == hidden_word[i] || tolower(choice) == hidden_word[i]){
                --tries_left;
                return 0;
            }
            //  Checks if character is a valid input
            if(toupper(choice) == word[i] || tolower(choice) == word[i]){
                    hidden_word[i] = word[i];
                    is_match = true;
            }
            //  If end of loop and character is invalid, lives left -=1
            if(i == hidden_word.length() -1 && is_match != true){
                --tries_left;
                return 0;
            }
    }
    is_match = false;
    return 0;
}

//  Checks if the word was found or not
void Hangman::decideFate(Hangman &f){
    if(hidden_word == word){
        cls();
        cout << "Congrats, \"" << word << "\" it is.\n\n";
        f.decision(f);
    }
    if(tries_left == 0 && hidden_word != word){
        cin.ignore();
        f.printHangman(f.getTries());
        cout << "Too bad you didn't guess right. It was \""
             << word << "\"" << endl << endl;
        f.decision(f);
    }
}

void Hangman::decision(Hangman &c) {
    cout << "+----------------------+" << endl;
    cout << "|     Alternatives     |" << endl;
    cout << "+----------------------+" << endl;
    cout << "\"restart\" or a new game\n"
         << "\"help\" for help information\n"
         << "\"quit\" to exit\n\nChoice: ";
    getline(cin, user_input);
    transform(user_input.begin(), user_input.end(),
              user_input.begin(), ::tolower);
    if(user_input == "restart"){
        c.startGame(c);
    } else if(user_input == "help"){
        info(c);

    } else if(user_input == "quit"){
        cls();
        cout << "Thank you for playing..." << endl;
        exit(EXIT_SUCCESS);

    } else{
        invalidInput2(c,user_input);
    }
}

void Hangman::invalidInput1(Hangman &i1, char &i){
    //cin.clear();
    cerr << "' " << i << " ' is not a valid input."
             << " Press <Enter> to try again.";
    getline(cin, user_input);
    Hangman::printMenu(i1);
}

void Hangman::invalidInput2(Hangman &i2, string &i){
    //cin.clear();
    cerr << "\" " << i << " \" is not a valid input."
             << " Press <Enter> to try again.";
    getline(cin, user_input);
    cls();
    Hangman::decision(i2);
}

//  Reset game
void Hangman::reset(){
    tries_left = 6;
    hidden_word = "";
}

//  Calls clear screen command
void Hangman::cls() const{
    // passes cls or clear string as character pointer
    system(arch.c_str());
}

ma​​in.cpp:

#include "Hangman.h"

int main() {
    Hangman hangman;
    hangman.printMenu(hangman);
}

尝试过:

  1. 从 14 开始以较低的标准 (11) 运行程序。
  2. 来自 tutorialspoint 的在线编译器.
  3. 手动设置单词。

观察:

我观察到如果我手动设置这个词,这种情况就解决了。我如何进一步缩小这个问题的范围?

编辑:

添加了 wordlist 并删除了一个杂散的反斜杠,它阻止了编译..

最佳答案

尝试在您的 wordlist.yx 文件上运行 dos2unix。如果它是在 Windows 上创建的,换行符可能是\r\n,而不仅仅是\n。如果\r 按字面解释,它将返回到行的开头,然后继续输出到 cout,从而覆盖你的第一个字符。

可以找到对 dos2unix 的引用 here .

为避免使用 dos2unix,您可以从 wordlist 数组中删除\r 字符。一种方法是遍历数组中的每个单词并像这样处理它们:

currWord.erase( std::remove(currWord.begin(), currWord.end(), '\r'), currWord.end() );

关于c++ - 输出流中的第一个字符被该流中删除的最后一个字符替换。为什么会这样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37151254/

相关文章:

c++ - 不知道对象类型时如何实现swap函数

python - Ansible - When 语句使用变量

linux - 鼠标和键盘在 qemu 模拟器中不工作

c - 读取由同一驱动程序的其他字符设备写入一个字符设备的数据

c++ - strcmpi 重命名为 _strcmpi?

c++ - 我的重定向机制有什么问题?

linux - 如何在 Bash 脚本中使用 Expect 生成预填充的终端 session

linux - 如何在 Ubuntu Jaunty 下从 HID 设备读取事件?

c++ - 在大表中生成随机数导致崩溃

c++ - 使用 for 循环 C++ 反转字符串