OpenTTD Source 20241224-master-gf74b0cf984
demands.h
Go to the documentation of this file.
1
3#ifndef DEMANDS_H
4#define DEMANDS_H
5
6#include "linkgraphjob_base.h"
7
13public:
15
16private:
17 int32_t base_distance;
18 int32_t mod_dist;
19 int32_t accuracy;
20
21 template<class Tscaler>
22 void CalcDemand(LinkGraphJob &job, Tscaler scaler);
23};
24
29public:
30
35 void Run(LinkGraphJob &job) const override { DemandCalculator c(job); }
36
40 virtual ~DemandHandler() = default;
41};
42
43#endif /* DEMANDS_H */
A handler doing "something" on a link graph component.
Calculate the demands.
Definition demands.h:12
void CalcDemand(LinkGraphJob &job, Tscaler scaler)
Do the actual demand calculation, called from constructor.
Definition demands.cpp:165
int32_t base_distance
Base distance for scaling purposes.
Definition demands.h:17
int32_t mod_dist
Distance modifier, determines how much demands decrease with distance.
Definition demands.h:18
int32_t accuracy
Accuracy of the calculation.
Definition demands.h:19
Stateless, thread safe demand handler.
Definition demands.h:28
virtual ~DemandHandler()=default
Virtual destructor has to be defined because of virtual Run().
void Run(LinkGraphJob &job) const override
Call the demand calculator on the given component.
Definition demands.h:35
Class for calculation jobs to be run on link graphs.
Some typedefs for component handlers.