rpg.cpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // Linux Legends - a console-based C++ RPG
  3. //
  4. // This program is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. //
  17. #include <iostream>
  18. #include <string>
  19. #include "creatures.h"
  20. // Control the flow of the game:
  21. int main()
  22. {
  23. Player p1(30, 100, 20, 0, "fist");
  24. while(true) {
  25. // Battle loop:
  26. Monster m1(30, 70, 20, 15, "Troll");
  27. while(true) {
  28. m1.defend(p1.attack());
  29. if (m1.is_dead()) {
  30. std::cout << "You win the match!\n";
  31. p1.get_xp(m1.yield_xp());
  32. std::cout << "Press enter to continue";
  33. std::cin.get();
  34. break;
  35. }
  36. p1.defend(m1.attack());
  37. if (p1.is_dead())
  38. break;
  39. std::cout << "Press enter to continue";
  40. std::cin.get();
  41. }
  42. if (p1.is_dead()) break;
  43. }
  44. std::cout << "You are dead!\n";
  45. }