From 5eef103593c0fc649ed3db92fa104b1f7e5906d3 Mon Sep 17 00:00:00 2001 From: Fate Date: Sat, 29 Nov 2008 19:18:22 -0700 Subject: Added SLang commands `map_level', `map_nr', `dir_towards' --- doc/spell-language | 14 ++++++++++ src/map/magic-expr.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 90 insertions(+), 3 deletions(-) diff --git a/doc/spell-language b/doc/spell-language index c19b1d7..5b0e5bb 100644 --- a/doc/spell-language +++ b/doc/spell-language @@ -536,6 +536,20 @@ The following functions are available: + sqrt : int -> int Computes the square root of the specified number + + map_level : location -> int + Determines the map level: 0 for outside, 1 for inside, 2ff for + dungeon levels (going down) + + + map_nr : location -> int + Computes the map number. Map number and map level together uniquely + identify a map. + + + dir_towards : location * location * int -> dir + dir_towards(start, end, flag) computes the direction from `start' to + `end'. If flag is zero, directions are limited to N, S, E, W; + otherwise NE, SE, NW, SW will also be used. The two locations must be + on the same map. + Operations: ----------- This section documents the operations API. diff --git a/src/map/magic-expr.c b/src/map/magic-expr.c index 483a9ee..0c5b9ce 100644 --- a/src/map/magic-expr.c +++ b/src/map/magic-expr.c @@ -101,7 +101,7 @@ show_entity(entity_t *entity) static void stringify(val_t *v, int within_op) { - static char *dirs[8] = {"S", "SW", "W", "NW", "N", "NE", "E", "SE"}; + static char *dirs[8] = {"south", "south-west", "west", "north-west", "north", "north-east", "east", "south-east"}; char *buf; switch (v->ty) { @@ -703,8 +703,6 @@ fun_is_equipped(env_t *env, int args_nr, val_t *result, val_t *args) if (!chr) return 1; - fprintf(stderr, "Checking for equipped status of item %d\n", item.nameid); - for (i = 0; i < 11; i++) if (chr->equip_index[i] >= 0 && chr->status.inventory[chr->equip_index[i]].nameid == item.nameid) { @@ -1022,6 +1020,78 @@ fun_sqrt(env_t *env, int args_nr, val_t *result, val_t *args) return 0; } +static int +fun_map_level(env_t *env, int args_nr, val_t *result, val_t *args) +{ + RESULTINT = map[ARGLOCATION(0).m].name[4] - '0'; + return 0; +} + +static int +fun_map_nr(env_t *env, int args_nr, val_t *result, val_t *args) +{ + const char *mapname = map[ARGLOCATION(0).m].name; + + RESULTINT = ((mapname[0] - '0') * 100) + + ((mapname[1] - '0') * 10) + + ((mapname[2] - '0')); + return 0; +} + +static int +fun_dir_towards(env_t *env, int args_nr, val_t *result, val_t *args) +{ + int dx; + int dy; + + if (ARGLOCATION(0).m != ARGLOCATION(1).m) + return 1; + + dx = ARGLOCATION(1).x - ARGLOCATION(0).x; + dy = ARGLOCATION(1).y - ARGLOCATION(0).y; + + if (ARGINT(1)) { + /* 8-direction mode */ + if (abs(dx) > abs(dy) * 2) { /* east or west */ + if (dx < 0) + RESULTINT = 2/* west */; + else + RESULTINT = 6/* east */; + } else if (abs(dy) > abs(dx) * 2) { /* north or south */ + if (dy > 0) + RESULTINT = 0/* south */; + else + RESULTINT = 4/* north */; + } else if (dx < 0) { /* north-west or south-west */ + if (dy < 0) + RESULTINT = 3/* north-west */; + else + RESULTINT = 1/* south-west */; + } else { /* north-east or south-east */ + if (dy < 0) + RESULTINT = 5/* north-east */; + else + RESULTINT = 7/* south-east */; + } + } else { + /* 4-direction mode */ + if (abs(dx) > abs(dy)) { /* east or west */ + if (dx < 0) + RESULTINT = 2/* west */; + else + RESULTINT = 6/* east */; + } else { /* north or south */ + if (dy > 0) + RESULTINT = 0/* south */; + else + RESULTINT = 4/* north */; + } + } + + return 0; +} + + #define BATTLE_RECORD2(sname, name) { sname, "e", 'i', fun_get_##name } #define BATTLE_RECORD(name) BATTLE_RECORD2(#name, name) @@ -1091,6 +1161,9 @@ static fun_t functions[] = { { "strlen", "s", 'i', fun_strlen }, { "substr", "sii", 's', fun_substr }, { "sqrt", "i", 'i', fun_sqrt }, + { "map_level", "l", 'i', fun_map_level }, + { "map_nr", "l", 'i', fun_map_nr }, + { "dir_towards", "lli", 'd', fun_dir_towards }, { NULL, NULL, '.', NULL } }; -- cgit v1.2.3-60-g2f50