ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/tod.h
(Generate patch)

Comparing deliantra/server/include/tod.h (file contents):
Revision 1.9 by root, Tue Apr 17 10:06:33 2007 UTC vs.
Revision 1.12 by root, Sun Jul 1 05:00:18 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
3 * 3 *
4 * Copyright (C) 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (C) 2003-2006 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2003-2006,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 2000 Tim Rightnour 6 * Copyright (©) 2000,2007 Tim Rightnour
7 * Copyright (C) 1992 Frank Tore Johansen 7 * Copyright (©) 1992,2007 Frank Tore Johansen
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * Crossfire TRT is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version. 12 * (at your option) any later version.
13 * 13 *
14 * This program is distributed in the hope that it will be useful, 14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details. 17 * GNU General Public License for more details.
18 * 18 *
19 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software 20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * 21 *
23 * The authors can be reached via e-mail at crossfire@schmorp.de 22 * The authors can be reached via e-mail to <crossfire@schmorp.de>
24 */ 23 */
25 24
26#ifndef TOD_H_ 25#ifndef TOD_H_
27#define TOD_H_ 26#define TOD_H_
28 27
29#define TICK (MAX_TIME * 1e-6) 28#define TICK (MAX_TIME * 1e-6)
29
30#define TICK2TIME(tick) (tstamp (tick) * TICK)
31#define TIME2TICK(time) tstamp ((time) / TICK)
30 32
31#define RUNTIME_PER_HOUR 180. 33#define RUNTIME_PER_HOUR 180.
32#define TICKS_PER_HOUR int (RUNTIME_PER_HOUR / MAX_TIME * 1e6) 34#define TICKS_PER_HOUR int (RUNTIME_PER_HOUR / MAX_TIME * 1e6)
33 35
34/* game time */ 36/* game time */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines