mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r11704) -Codechange: remove another bunch of useless includes.
This commit is contained in:
parent
c124792fd2
commit
0b1d3e43e5
@ -1,5 +1,8 @@
|
|||||||
|
/* $Id$ */
|
||||||
|
|
||||||
|
/** @file null.cpp A blitter that doesn't blit. */
|
||||||
|
|
||||||
#include "../stdafx.h"
|
#include "../stdafx.h"
|
||||||
#include "../variables.h"
|
|
||||||
#include "null.hpp"
|
#include "null.hpp"
|
||||||
|
|
||||||
static FBlitter_Null iFBlitter_Null;
|
static FBlitter_Null iFBlitter_Null;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
/** @file openttd.h */
|
|
||||||
|
/** @file cargo_type.h Types related to cargos... */
|
||||||
|
|
||||||
#ifndef CARGO_TYPE_H
|
#ifndef CARGO_TYPE_H
|
||||||
#define CARGO_TYPE_H
|
#define CARGO_TYPE_H
|
||||||
|
@ -3,10 +3,11 @@
|
|||||||
/** @file random_func.cpp */
|
/** @file random_func.cpp */
|
||||||
|
|
||||||
#include "../stdafx.h"
|
#include "../stdafx.h"
|
||||||
#include "../variables.h"
|
|
||||||
#include "random_func.hpp"
|
#include "random_func.hpp"
|
||||||
#include "bitmath_func.hpp"
|
#include "bitmath_func.hpp"
|
||||||
|
|
||||||
|
uint32 _random_seeds[2][2];
|
||||||
|
|
||||||
uint32 InteractiveRandom()
|
uint32 InteractiveRandom()
|
||||||
{
|
{
|
||||||
const uint32 s = _random_seeds[1][0];
|
const uint32 s = _random_seeds[1][0];
|
||||||
|
@ -100,4 +100,6 @@ static inline bool Chance16R(const uint a, const uint b, uint32 &r)
|
|||||||
return Chance16I(a, b, r);
|
return Chance16I(a, b, r);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern uint32 _random_seeds[2][2];
|
||||||
|
|
||||||
#endif /* RANDOM_FUNC_HPP */
|
#endif /* RANDOM_FUNC_HPP */
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
|
|
||||||
#include "core/random_func.hpp"
|
#include "core/random_func.hpp"
|
||||||
#include "command_type.h"
|
#include "command_type.h"
|
||||||
#include "openttd.h"
|
|
||||||
#include "tile_cmd.h"
|
#include "tile_cmd.h"
|
||||||
|
|
||||||
/* clear_land.cpp */
|
/* clear_land.cpp */
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "viewport.h"
|
#include "viewport.h"
|
||||||
#include "map_func.h"
|
#include "map_func.h"
|
||||||
#include "date_func.h"
|
#include "date_func.h"
|
||||||
|
#include "core/random_func.hpp"
|
||||||
|
|
||||||
void GenerateClearTile();
|
void GenerateClearTile();
|
||||||
void GenerateIndustries();
|
void GenerateIndustries();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#ifndef NEWGRF_CONFIG_H
|
#ifndef NEWGRF_CONFIG_H
|
||||||
#define NEWGRF_CONFIG_H
|
#define NEWGRF_CONFIG_H
|
||||||
|
|
||||||
#include "openttd.h"
|
#include "strings_type.h"
|
||||||
|
|
||||||
/* GRF config bit flags */
|
/* GRF config bit flags */
|
||||||
enum GCF_Flags {
|
enum GCF_Flags {
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
#ifndef NPF_H
|
#ifndef NPF_H
|
||||||
#define NPF_H
|
#define NPF_H
|
||||||
|
|
||||||
#include "openttd.h"
|
|
||||||
#include "aystar.h"
|
#include "aystar.h"
|
||||||
#include "station.h"
|
#include "station.h"
|
||||||
#include "vehicle_type.h"
|
#include "vehicle_type.h"
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
#define PATHFIND_H
|
#define PATHFIND_H
|
||||||
|
|
||||||
#include "direction_type.h"
|
#include "direction_type.h"
|
||||||
#include "openttd.h"
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
STR_FACTOR = 2,
|
STR_FACTOR = 2,
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
#include "../stdafx.h"
|
#include "../stdafx.h"
|
||||||
#include "../gfx_func.h"
|
#include "../gfx_func.h"
|
||||||
#include "../fileio.h"
|
#include "../fileio.h"
|
||||||
#include "../variables.h"
|
|
||||||
#include "../debug.h"
|
#include "../debug.h"
|
||||||
#include "../core/alloc_func.hpp"
|
#include "../core/alloc_func.hpp"
|
||||||
#include "../core/endian_func.hpp"
|
#include "../core/endian_func.hpp"
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
#include "direction_func.h"
|
#include "direction_func.h"
|
||||||
#include "core/bitmath_func.hpp"
|
#include "core/bitmath_func.hpp"
|
||||||
#include "tile_map.h"
|
#include "tile_map.h"
|
||||||
#include "openttd.h"
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
#define VARIABLES_H
|
#define VARIABLES_H
|
||||||
|
|
||||||
#include "yapf/yapf_settings.h"
|
#include "yapf/yapf_settings.h"
|
||||||
#include "openttd.h"
|
|
||||||
#include "tile_type.h"
|
#include "tile_type.h"
|
||||||
#include "strings_type.h"
|
#include "strings_type.h"
|
||||||
#include "date_type.h"
|
#include "date_type.h"
|
||||||
@ -51,8 +50,6 @@ VARDEF uint16 _disaster_delay;
|
|||||||
* tick handler. */
|
* tick handler. */
|
||||||
VARDEF uint16 _station_tick_ctr;
|
VARDEF uint16 _station_tick_ctr;
|
||||||
|
|
||||||
VARDEF uint32 _random_seeds[2][2];
|
|
||||||
|
|
||||||
/* Iterator through all towns in OnTick_Town */
|
/* Iterator through all towns in OnTick_Town */
|
||||||
VARDEF uint32 _cur_town_ctr;
|
VARDEF uint32 _cur_town_ctr;
|
||||||
/* Frequency iterator at the same place */
|
/* Frequency iterator at the same place */
|
||||||
|
Loading…
Reference in New Issue
Block a user