Реферат: Разработка игровой программы на языке программирования Turbo Pascal
end;
end;
xp:=xp+8;
end;
end;
end;
Function Logo;
Var
Res,Old:Byte;
begin
ClearKeys;
Old:=0;
Res:=1;
ClearBase(Base1);
DrawString(Base1,30,60,'Play the game');
DrawString(Base1,30,70,'Instructions');
DrawString(Base1,30,80,'Story');
DrawString(Base1,30,90,'Exit to DOS');
Repeat
if Old<>Res then
begin
Bar(Base1,20,60,28,100,0);
DrawString(Base1,20,60+(Res-1)*10,'>');
Old:=Res;
end;
if Pressed(keyUp) then
begin
Res:=Res-1;
if Res<1 then Res:=4;