c++libtcod

C++: How To Use %i in Function?


I have a little question, is it possible to use %i in function? Here is what I need to do. I have a function callback:

engine.gui->menu.addItem(Menu::AGILITY,"Agility (+1 defense)");

and i want to use it in this way:

engine.gui->menu.addItem(Menu::AGILITY,"Agility (%i defense)",engine.level);

How I need to implement that, or that might be not even possible? I tried my best to do something, but I didn't managed it. :( The reason that I want to do this is then player avenges to the next level, engine.level counts gets ++, so then player level ups he can get more AGILITY in different levels, and then leveling he can be informed how many agility he could get.


Solution

  • If you have C++11, you can do:

    engine.gui->menu.addItem(
            Menu::AGILITY,
            "Agility (" + std::to_string( engine.level ) + " defense)" );
    

    If you don't have C++11, you should have the equivalent of std::to_string in your toolkit. Something like:

    template <typename T>
    std::string
    toString( T const& obj )
    {
        std::ostringstream result;
        result << obj;
        return result.str();
    }