aboutsummaryrefslogtreecommitdiff
path: root/Занимательное программирование/1/11_8_fma/Project1.pas
blob: f8e0fc305508f1f8dff94438a40733440a9334cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
program Project1;

{$mode objfpc}{$H+}
{$codepage utf8}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  Classes, SysUtils, CustApp
  { you can add units after this };

  type StateType = (pay, coffee, cup, back);
  type CommandType = (
    pay5, pay10, pay20, pay50, pay100, pay200,
    chooseblack, choosesugar, coosecappu, choosecacao,
    choosecup, choosenocup, payback
  );

type

  { TStateMachine }

  TStateMachine = class(TCustomApplication)
  protected
    procedure DoRun; override;
  public
    constructor Create(TheOwner: TComponent); override;
    destructor Destroy; override;
    function GetNextCommand: CommandType;
  end;

{ TStateMachine }

procedure TStateMachine.DoRun;
var
  ErrorMsg: String;
  State: StateType = pay;
  Command: CommandType;
  moneyPayed: Integer = 0;
begin
  // quick check parameters
  ErrorMsg := CheckOptions('h', 'help');
  if ErrorMsg <> '' then begin
    ShowException(Exception.Create(ErrorMsg));
    Terminate;
    Exit;
  end;

  while true do
  begin
    Command := GetNextCommand;
    case State of
      pay:
        begin
          case Command of
            pay5:
              begin
                moneyPayed := moneyPayed + 5;
              end;
            pay10:
              begin
                moneyPayed := moneyPayed + 10;
              end;
            pay20:
              begin
                moneyPayed := moneyPayed + 20;
              end;
            pay50:
              begin
                moneyPayed := moneyPayed + 50;
              end;
            pay100:
              begin
                moneyPayed := moneyPayed + 100;
              end;
            pay200:
              begin
                moneyPayed := moneyPayed + 200;
              end;
            chooseblack, choosesugar, coosecappu, choosecacao:
              begin
                if moneyPayed >= 70 then
                begin
                  State := coffee;
                end
                else
                begin
                  WriteLn('Вы бросили недостаточно денег.');
                end;
              end
            else
              WriteLn('Неверная команда!');
          end;
        end;
      coffee:
        begin
          case Command of
            choosecup, choosenocup:
              begin
                State := cup;
              end;
            else
              WriteLn('Неверная команда!');
          end;
        end;
      cup:
        begin
          case Command of
            payback:
              begin
                State := back;
                WriteLn('Ваша сдача: ' + IntToStr(moneyPayed - 70));
                Break;
              end;
            else
              WriteLn('Неверная команда!');
            end;
        end;
      back:
        begin
        end;
    end;
  end;

  // stop program loop
  Terminate;
end;

constructor TStateMachine.Create(TheOwner: TComponent);
begin
  inherited Create(TheOwner);
  StopOnException:=True;
end;

destructor TStateMachine.Destroy;
begin
  inherited Destroy;
end;

function TStateMachine.GetNextCommand: CommandType;
var
  Input: String;
begin
  Writeln('Введите команду:');
  while true do
  begin
    Readln(Input);
    case Input of
      'pay5':
        begin
          Result := pay5;
          Exit;
        end;
      'pay10':
        begin
          Result := pay10;
          Exit;
        end;
      'pay20':
        begin
          Result := pay20;
          Exit;
        end;
      'pay50':
        begin
          Result := pay50;
          Exit;
        end;
      'pay100':
        begin
          Result := pay100;
          Exit;
        end;
      'pay200':
        begin
          Result := pay200;
          Exit;
        end;
      'chooseblack':
        begin
          Result := chooseblack;
          Exit;
        end;
      'choosesugar':
        begin
          Result := choosesugar;
          Exit;
        end;
      'choosecappu':
        begin
          Result := coosecappu;
          Exit;
        end;
      'choosecacao':
        begin
          Result := choosecacao;
          Exit;
        end;
      'choosecup':
        begin
          Result := choosecup;
          Exit;
        end;
      'choosenocup':
        begin
          Result := choosenocup;
          Exit;
        end;
      'payback':
        begin
          Result := payback;
          Exit;
        end
      else Writeln('Команда не существует. Попробуйте еще раз:');
    end;
  end;
end;

var
  Application: TStateMachine;
begin
  Application:=TStateMachine.Create(nil);
  Application.Title:='State automat';
  Application.Run;
  Application.Free;
end.