Advertisement
Lauda

Untitled

Mar 4th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.84 KB | None | 0 0
  1. // Semafor.hpp
  2. #ifndef SEMAFOR_H_INCLUDED
  3. #define SEMAFOR_H_INCLUDED
  4.  
  5. #include <iostream>
  6. #include <cstdlib>
  7. #include <math.h>
  8.  
  9. using namespace std;
  10.  
  11. enum stanje
  12. {
  13.     sON, sOFF, sOUT, sBLINK
  14. };
  15.  
  16. enum boje
  17. {
  18.     cRED, cGREEN, cYELLOW, cYELLOWRED, cBLINK, cNONE
  19. };
  20.  
  21. class Semafor
  22. {
  23.     private:
  24.         stanje state;
  25.         boje color;
  26.  
  27.     public:
  28.         Semafor();
  29.         Semafor(const Semafor&);
  30.  
  31.         stanje getStanje() const;
  32.         boje getBoja() const;
  33.         bool turnOn();
  34.         bool turnOff();
  35.         bool turnOut();
  36.         bool turnBlink();
  37.         bool repair();
  38.         bool changeColor();
  39. };
  40.  
  41. #endif // SEMAFOR_H_INCLUDED
  42.  
  43.  
  44. // Semafor.cpp
  45. #include "semafor.h"
  46.  
  47. Semafor :: Semafor()
  48. {
  49.     state = sOFF;
  50.     color = cNONE;
  51. }
  52.  
  53. Semafor :: Semafor(Semafor const &rf)
  54. {
  55.     state = rf.state;
  56.     color = rf.color;
  57. }
  58.  
  59. stanje Semafor :: getStanje() const
  60. {
  61.     return state;
  62. }
  63.  
  64. boje Semafor :: getBoja() const
  65. {
  66.     return color;
  67. }
  68.  
  69. bool Semafor :: turnOn()
  70. {
  71.     if (state == sOFF)
  72.     {
  73.         state = sON;
  74.         color = cRED;
  75.         return true;
  76.     }
  77.     else
  78.         return false;
  79. }
  80.  
  81. bool Semafor :: turnOff()
  82. {
  83.     if (state == sON || state == sBLINK)
  84.     {
  85.         state = sOFF;
  86.         color = cNONE;
  87.         return true;
  88.     }
  89.     else
  90.         return false;
  91. }
  92.  
  93. bool Semafor :: turnOut()
  94. {
  95.     if (state != sOUT)
  96.     {
  97.         state = sOUT;
  98.         color = cNONE;
  99.         return true;
  100.     }
  101.     else
  102.         return false;
  103. }
  104.  
  105. bool Semafor :: turnBlink()
  106. {
  107.     if (state == sOFF)
  108.     {
  109.         state = sBLINK;
  110.         color = cBLINK;
  111.         return true;
  112.     }
  113.     else
  114.         return false;
  115. }
  116.  
  117. bool Semafor :: repair()
  118. {
  119.     if (state == sOUT)
  120.     {
  121.         state = sOFF;
  122.         color = cNONE;
  123.         return true;
  124.     }
  125.     else
  126.         return false;
  127. }
  128.  
  129. bool Semafor :: changeColor()
  130. {
  131.     if (state == sON)
  132.     {
  133.         switch(color)
  134.         {
  135.             case cRED:
  136.                 color = cYELLOWRED;
  137.                 break;
  138.  
  139.             case cYELLOWRED:
  140.                 color = cGREEN;
  141.                 break;
  142.  
  143.             case cGREEN:
  144.                 color = cYELLOW;
  145.                 break;
  146.  
  147.             case cYELLOW:
  148.                 color = cRED;
  149.                 break;
  150.  
  151.             default:
  152.                 color = cNONE;
  153.         }
  154.         return true;
  155.     }
  156.     else
  157.         return false;
  158. }
  159.  
  160.  
  161.  
  162. // Main.cpp
  163. #include "semafor.h"
  164.  
  165. void printSemafor(const Semafor &rf)
  166. {
  167.     cout << "*** Stanje semafora: ";
  168.     switch(rf.getStanje())
  169.     {
  170.         case sON:
  171.             cout << "ON! ***" << endl;
  172.             break;
  173.  
  174.         case sOFF:
  175.             cout << "OFF! ***" << endl;
  176.             break;
  177.  
  178.         case sOUT:
  179.             cout << "OUT! ***" << endl;
  180.             break;
  181.  
  182.         case sBLINK:
  183.             cout << "BLINK! ***" << endl;
  184.             break;
  185.  
  186.         default:
  187.             cout << "N/A ***" << endl;
  188.     }
  189.  
  190.     cout << "*** Boja: ";
  191.     switch(rf.getBoja())
  192.     {
  193.         case cNONE:
  194.             cout << "NONE! ***" << endl;
  195.             break;
  196.  
  197.         case cBLINK:
  198.             cout << "BLINK! ***" << endl;
  199.             break;
  200.  
  201.         case cRED:
  202.             cout << "RED! ***" << endl;
  203.             break;
  204.  
  205.         case cYELLOW:
  206.         case cYELLOWRED:
  207.             cout << "YELLOW! ***" << endl;
  208.             break;
  209.  
  210.         case cGREEN:
  211.             cout << "GREEN! ***" << endl;
  212.             break;
  213.  
  214.         default:
  215.             cout << "N/A ***" << endl;
  216.     }
  217.     cout << endl;
  218. }
  219.  
  220. char meni()
  221. {
  222.     char odg;
  223.  
  224.     do
  225.     {
  226.         cout << "Izaberite opciju: " << endl;
  227.         cout << "1. Ukljuci semafor" << endl;
  228.         cout << "2. Iskljuci semafor" << endl;
  229.         cout << "3. Ukljuci trepcuce zuto" << endl;
  230.         cout << "4. Pokvari semafor" << endl;
  231.         cout << "5. Popravi semafor" << endl;
  232.         cout << "6. Promjeni boju" << endl;
  233.         cout << "7. Kraj rada" << endl;
  234.         cin >> odg;
  235.     }
  236.     while (odg < '1' || odg > '7');
  237.  
  238.     return odg;
  239. }
  240.  
  241. int main()
  242. {
  243.     Semafor s;
  244.     char ch;
  245.  
  246.     do
  247.     {
  248.         ch = meni();
  249.         switch(ch)
  250.         {
  251.             case '1':
  252.                 if (s.turnOn())
  253.                     cout << "Operacija izvrsena!" << endl;
  254.                 else
  255.                     cout << "Opercaija nije izvrsena!" << endl;
  256.                     printSemafor(s);
  257.                     break;
  258.  
  259.             case '2':
  260.                 if (s.turnOff())
  261.                     cout << "Operacija izvrsena!" << endl;
  262.                 else
  263.                     cout << "Opercaija nije izvrsena!" << endl;
  264.                     printSemafor(s);
  265.                     break;
  266.  
  267.             case '3':
  268.                 if (s.turnBlink())
  269.                     cout << "Operacija izvrsena!" << endl;
  270.                 else
  271.                     cout << "Opercaija nije izvrsena!" << endl;
  272.                     printSemafor(s);
  273.                     break;
  274.  
  275.             case '4':
  276.                 if (s.turnOut())
  277.                     cout << "Operacija izvrsena!" << endl;
  278.                 else
  279.                     cout << "Opercaija nije izvrsena!" << endl;
  280.                     printSemafor(s);
  281.                     break;
  282.  
  283.             case '5':
  284.                 if (s.repair())
  285.                     cout << "Operacija izvrsena!" << endl;
  286.                 else
  287.                     cout << "Opercaija nije izvrsena!" << endl;
  288.                     printSemafor(s);
  289.                     break;
  290.  
  291.             case '6':
  292.                 if (s.changeColor())
  293.                     cout << "Operacija izvrsena!" << endl;
  294.                 else
  295.                     cout << "Opercaija nije izvrsena!" << endl;
  296.                     printSemafor(s);
  297.                     break;
  298.  
  299.         }
  300.     }
  301.     while (ch != '7');
  302.  
  303.     return 0;
  304.  
  305. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement