fix: Add default isWater implementation and water movement penalty
This commit is contained in:
parent
d506ee1714
commit
1ce5abc901
@ -210,6 +210,7 @@
|
|||||||
|
|
||||||
<script src="entities.js"></script>
|
<script src="entities.js"></script>
|
||||||
<script src="utils.js"></script>
|
<script src="utils.js"></script>
|
||||||
|
<script src="terrain.js"></script>
|
||||||
<script src="ai.js"></script>
|
<script src="ai.js"></script>
|
||||||
<script src="render.js"></script>
|
<script src="render.js"></script>
|
||||||
<script src="events.js"></script>
|
<script src="events.js"></script>
|
||||||
|
8
utils.js
8
utils.js
@ -46,6 +46,14 @@ function randInt(min, max) {
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* MOVE & DISTANCE
|
* MOVE & DISTANCE
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
// Default implementation of isWater - will be overridden by terrain.js
|
||||||
|
function isWater(x, y) {
|
||||||
|
return false; // Default to no water
|
||||||
|
}
|
||||||
|
|
||||||
|
// Water movement penalty constant
|
||||||
|
const WATER_MOVEMENT_PENALTY = 0.5;
|
||||||
|
|
||||||
function moveToward(obj, tx, ty, speed=0.4) {
|
function moveToward(obj, tx, ty, speed=0.4) {
|
||||||
let dx = tx - obj.x;
|
let dx = tx - obj.x;
|
||||||
let dy = ty - obj.y;
|
let dy = ty - obj.y;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user