Searched refs:rWdt (Results 1 – 4 of 4) sorted by relevance
/dports/games/openclonk/openclonk-release-8.1-src/src/landscape/ |
H A D | C4Scenario.cpp | 319 void C4SLandscape::GetMapSize(int32_t &rWdt, int32_t &rHgt, int32_t iPlayerNum) in GetMapSize() argument 321 rWdt = MapWdt.Evaluate(); in GetMapSize() 325 rWdt = std::min(rWdt * std::min(iPlayerNum, C4S_MaxMapPlayerExtend), MapWdt.Max); in GetMapSize()
|
H A D | C4Scenario.h | 192 void GetMapSize(int32_t &rWdt, int32_t &rHgt, int32_t iPlayerNum);
|
H A D | C4Landscape.h | 135 …bool ClipRect(int32_t &rX, int32_t &rY, int32_t &rWdt, int32_t &rHgt) const; // clip given rect by…
|
H A D | C4Landscape.cpp | 4021 bool C4Landscape::ClipRect(int32_t &rX, int32_t &rY, int32_t &rWdt, int32_t &rHgt) const in ClipRect() argument 4024 if (rX < 0) { rWdt += rX; rX = 0; } in ClipRect() 4028 iOver = rX + rWdt - GetWidth(); in ClipRect() 4030 rWdt -= iOver; in ClipRect() 4037 return rWdt > 0 && rHgt > 0; in ClipRect()
|