~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/true_server.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Goulais
  • Date: 2004-08-09 10:26:00 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040809102600-lg2q9lfars0q1p42
Tags: 0.6.0-8
Applied patch from Andreas Jochens (Closes: #263992)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  $Id: true_server.cxx,v 1.19 2003/04/07 11:58:19 grumbel Exp $
 
2
//
 
3
//  Pingus - A free Lemmings clone
 
4
//  Copyright (C) 1999 Ingo Ruhnke <grumbel@gmx.de>
 
5
//
 
6
//  This program is free software; you can redistribute it and/or
 
7
//  modify it under the terms of the GNU General Public License
 
8
//  as published by the Free Software Foundation; either version 2
 
9
//  of the License, or (at your option) any later version.
 
10
//
 
11
//  This program is distributed in the hope that it will be useful,
 
12
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//  GNU General Public License for more details.
 
15
//
 
16
//  You should have received a copy of the GNU General Public License
 
17
//  along with this program; if not, write to the Free Software
 
18
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
#include "goal_manager.hxx"
 
21
#include "true_server.hxx"
 
22
 
 
23
TrueServer::TrueServer(PLF* arg_plf)
 
24
  : Server (arg_plf)
 
25
{
 
26
  fast_forward = false;
 
27
  pause = false;
 
28
}
 
29
 
 
30
TrueServer::~TrueServer()
 
31
{
 
32
}
 
33
 
 
34
void
 
35
TrueServer::update()
 
36
{
 
37
  if (fast_forward && !pause)
 
38
    {
 
39
      // To let the game run faster we just update it multiple
 
40
      // times
 
41
      for (int i = 0; i < 4; ++i)
 
42
        {
 
43
          Server::update();
 
44
        }
 
45
    }
 
46
  else
 
47
    {
 
48
      if (!pause)
 
49
        Server::update();
 
50
    }
 
51
}
 
52
 
 
53
void
 
54
TrueServer::set_fast_forward(bool value)
 
55
{
 
56
  fast_forward = value;
 
57
}
 
58
 
 
59
bool
 
60
TrueServer::get_fast_forward()
 
61
{
 
62
  return fast_forward;
 
63
}
 
64
 
 
65
void 
 
66
TrueServer::set_pause(bool value)
 
67
{
 
68
  pause = value;
 
69
}
 
70
 
 
71
bool
 
72
TrueServer::get_pause()
 
73
{
 
74
  return pause;
 
75
}
 
76
 
 
77
void
 
78
TrueServer::set_finished ()
 
79
{
 
80
  goal_manager->set_abort_goal();
 
81
  set_pause(false);
 
82
}
 
83
 
 
84
/* EOF */