summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/io/shr_database.erl (renamed from src/shared/io/sh_database.erl) | 12 | ||||
-rw-r--r-- | src/shared/io/shr_timed_cache.erl (renamed from src/shared/io/sh_timed_cache.erl) | 12 | ||||
-rw-r--r-- | src/shared/io/shr_timed_caches_manager.erl (renamed from src/shared/io/sh_timed_caches_manager.erl) | 2 | ||||
-rw-r--r-- | src/shared/shr_roll.erl (renamed from src/shared/sh_roll.erl) | 2 | ||||
-rw-r--r-- | src/shared/struct/shr_armor.erl (renamed from src/shared/struct/sh_armor.erl) | 46 | ||||
-rw-r--r-- | src/shared/struct/shr_attributes.erl (renamed from src/shared/struct/sh_attributes.erl) | 14 | ||||
-rw-r--r-- | src/shared/struct/shr_db_item.erl (renamed from src/shared/struct/sh_db_item.erl) | 10 | ||||
-rw-r--r-- | src/shared/struct/shr_db_query.erl (renamed from src/shared/struct/sh_db_query.erl) | 30 | ||||
-rw-r--r-- | src/shared/struct/shr_db_user.erl (renamed from src/shared/struct/sh_db_user.erl) | 2 | ||||
-rw-r--r-- | src/shared/struct/shr_statistics.erl (renamed from src/shared/struct/sh_statistics.erl) | 30 | ||||
-rw-r--r-- | src/shared/struct/shr_weapon.erl (renamed from src/shared/struct/sh_weapon.erl) | 22 | ||||
-rw-r--r-- | src/shared/util/shr_array_util.erl (renamed from src/shared/util/sh_array_util.erl) | 2 | ||||
-rw-r--r-- | src/shared/util/shr_math_util.erl (renamed from src/shared/util/sh_math_util.erl) | 2 |
13 files changed, 93 insertions, 93 deletions
diff --git a/src/shared/io/sh_database.erl b/src/shared/io/shr_database.erl index 233e37d..bffcb9f 100644 --- a/src/shared/io/sh_database.erl +++ b/src/shared/io/shr_database.erl @@ -1,4 +1,4 @@ --module(sh_database). +-module(shr_database). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -34,12 +34,12 @@ do_remote_operation (Op, Params) -> %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --spec insert (atom(), any(), sh_db_user:permission(), any()) -> 'ok'. +-spec insert (atom(), any(), shr_db_user:permission(), any()) -> 'ok'. insert (DB, ObjectID, Permission, Value) -> {atomic, _} = do_remote_operation(insert, [DB, ObjectID, Permission, Value]), io:format ( - "~nsh_database:insert(~p) -> ok.~n", + "~nshr_database:insert(~p) -> ok.~n", [{DB, ObjectID, Permission, Value}] ), @@ -48,11 +48,11 @@ insert (DB, ObjectID, Permission, Value) -> -spec fetch (atom(), any()) -> ({'ok', any()} | 'not_found'). fetch (DB, ObjectID) -> {atomic, Reply} = do_remote_operation(read, [DB, ObjectID]), - io:format("~nsh_database:fetch(~p) -> ~p.~n", [{DB, ObjectID}, Reply]), + io:format("~nshr_database:fetch(~p) -> ~p.~n", [{DB, ObjectID}, Reply]), Reply. --spec commit (sh_db_query:type()) -> 'ok'. +-spec commit (shr_db_query:type()) -> 'ok'. commit (Query) -> {atomic, ok} = do_remote_operation(query, [Query]), - io:format("~nsh_database:commit(~p) -> ok.~n", [Query]), + io:format("~nshr_database:commit(~p) -> ok.~n", [Query]), ok. diff --git a/src/shared/io/sh_timed_cache.erl b/src/shared/io/shr_timed_cache.erl index 6f3d973..b89de48 100644 --- a/src/shared/io/sh_timed_cache.erl +++ b/src/shared/io/shr_timed_cache.erl @@ -1,4 +1,4 @@ --module(sh_timed_cache). +-module(shr_timed_cache). -behavior(gen_server). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -38,7 +38,7 @@ -spec add_to_cache (atom(), any(), any()) -> any(). add_to_cache (DB, Owner, ObjectID) -> {ok, TimerPID} = gen_server:start(?MODULE, {DB, {Owner, ObjectID}}, []), - {ok, Data} = sh_database:fetch(DB, ObjectID), + {ok, Data} = shr_database:fetch(DB, ObjectID), ets:insert(DB, {{Owner, ObjectID}, TimerPID, Data}), Data. @@ -54,17 +54,17 @@ add_update_to_cache (DB, Owner, ObjectID, Data) -> %%%% 'gen_server' functions init ({DB, ObjectID}) -> io:format("~nCache entry added: ~p.~n", [{DB, ObjectID}]), - {ok, {DB, ObjectID}, sh_timed_caches_manager:get_timeout()}. + {ok, {DB, ObjectID}, shr_timed_caches_manager:get_timeout()}. handle_call (invalidate, _, State) -> {stop, normal, State}; handle_call (ping, _, State) -> - {noreply, State, sh_timed_caches_manager:get_timeout()}. + {noreply, State, shr_timed_caches_manager:get_timeout()}. handle_cast (invalidate, State) -> {stop, normal, State}; handle_cast (ping, State) -> - {noreply, State, sh_timed_caches_manager:get_timeout()}. + {noreply, State, shr_timed_caches_manager:get_timeout()}. terminate (_, {DB, ObjectID}) -> io:format @@ -83,7 +83,7 @@ format_status (_, [_, State]) -> handle_info(timeout, State) -> {stop, normal, State}; handle_info(_, {DB, ObjectID}) -> - {noreply, {DB, ObjectID}, sh_timed_caches_manager:get_timeout()}. + {noreply, {DB, ObjectID}, shr_timed_caches_manager:get_timeout()}. %%%% Interface Functions -spec fetch (atom(), any(), any()) -> any(). diff --git a/src/shared/io/sh_timed_caches_manager.erl b/src/shared/io/shr_timed_caches_manager.erl index ea92c08..8303cb8 100644 --- a/src/shared/io/sh_timed_caches_manager.erl +++ b/src/shared/io/shr_timed_caches_manager.erl @@ -1,4 +1,4 @@ --module(sh_timed_caches_manager). +-module(shr_timed_caches_manager). -behavior(gen_server). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/shared/sh_roll.erl b/src/shared/shr_roll.erl index f2212b1..8e688c7 100644 --- a/src/shared/sh_roll.erl +++ b/src/shared/shr_roll.erl @@ -1,4 +1,4 @@ --module(sh_roll). +-module(shr_roll). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/shared/struct/sh_armor.erl b/src/shared/struct/shr_armor.erl index cea2ce9..65445ca 100644 --- a/src/shared/struct/sh_armor.erl +++ b/src/shared/struct/shr_armor.erl @@ -1,4 +1,4 @@ --module(sh_armor). +-module(shr_armor). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -106,61 +106,61 @@ from_id (4) -> }. -spec random_id () -> id(). -random_id () -> sh_roll:between(0, 4). +random_id () -> shr_roll:between(0, 4). -spec apply_to_attributes ( type(), - sh_attributes:type() + shr_attributes:type() ) - -> sh_attributes:type(). + -> shr_attributes:type(). apply_to_attributes (Ar, Att) -> - Constitution = sh_attributes:get_constitution(Att), - Dexterity = sh_attributes:get_dexterity(Att), - Speed = sh_attributes:get_speed(Att), - Strength = sh_attributes:get_strength(Att), - Mind = sh_attributes:get_mind(Att), - Impact = sh_math_util:ceil(20.0 * Ar#armor.coef), - HalfImpact = sh_math_util:ceil(10.0 * Ar#armor.coef), + Constitution = shr_attributes:get_constitution(Att), + Dexterity = shr_attributes:get_dexterity(Att), + Speed = shr_attributes:get_speed(Att), + Strength = shr_attributes:get_strength(Att), + Mind = shr_attributes:get_mind(Att), + Impact = shr_math_util:ceil(20.0 * Ar#armor.coef), + HalfImpact = shr_math_util:ceil(10.0 * Ar#armor.coef), Category = Ar#armor.category, case Category of - kinetic -> sh_attributes:set_unsafe_mind((Mind - Impact), Att); + kinetic -> shr_attributes:set_unsafe_mind((Mind - Impact), Att); leather -> - sh_attributes:set_unsafe_constitution + shr_attributes:set_unsafe_constitution ( (Constitution - HalfImpact), - sh_attributes:set_unsafe_dexterity((Dexterity - HalfImpact), Att) + shr_attributes:set_unsafe_dexterity((Dexterity - HalfImpact), Att) ); chain -> - sh_attributes:set_unsafe_constitution + shr_attributes:set_unsafe_constitution ( (Constitution - HalfImpact), - sh_attributes:set_unsafe_dexterity + shr_attributes:set_unsafe_dexterity ( (Dexterity - HalfImpact), - sh_attributes:set_unsafe_speed((Speed - Impact), Att) + shr_attributes:set_unsafe_speed((Speed - Impact), Att) ) ); plate -> - sh_attributes:set_unsafe_constitution + shr_attributes:set_unsafe_constitution ( (Constitution - HalfImpact), - sh_attributes:set_unsafe_dexterity + shr_attributes:set_unsafe_dexterity ( (Dexterity - HalfImpact), - sh_attributes:set_unsafe_speed + shr_attributes:set_unsafe_speed ( (Speed - Impact), - sh_attributes:set_unsafe_strength((Strength - Impact), Att) + shr_attributes:set_unsafe_strength((Strength - Impact), Att) ) ) ) end. --spec get_resistance_to (sh_weapon:damage_type(), type()) -> non_neg_integer(). +-spec get_resistance_to (shr_weapon:damage_type(), type()) -> non_neg_integer(). get_resistance_to (DamageType, Armor) -> ArmorCategory = Armor#armor.category, BaseResistance = @@ -182,4 +182,4 @@ get_resistance_to (DamageType, Armor) -> ArmorCoefficient = Armor#armor.coef, ActualResistance = (ArmorCoefficient * BaseResistance), - sh_math_util:ceil(ActualResistance). + shr_math_util:ceil(ActualResistance). diff --git a/src/shared/struct/sh_attributes.erl b/src/shared/struct/shr_attributes.erl index 9b4478f..23824e4 100644 --- a/src/shared/struct/sh_attributes.erl +++ b/src/shared/struct/shr_attributes.erl @@ -1,4 +1,4 @@ --module(sh_attributes). +-module(shr_attributes). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -126,10 +126,10 @@ set_unsafe_strength (Val, Att) -> set_strength(make_safe(Val), Att). random () -> #attributes { - constitution = sh_roll:percentage(), - dexterity = sh_roll:percentage(), - intelligence = sh_roll:percentage(), - mind = sh_roll:percentage(), - speed = sh_roll:percentage(), - strength = sh_roll:percentage() + constitution = shr_roll:percentage(), + dexterity = shr_roll:percentage(), + intelligence = shr_roll:percentage(), + mind = shr_roll:percentage(), + speed = shr_roll:percentage(), + strength = shr_roll:percentage() }. diff --git a/src/shared/struct/sh_db_item.erl b/src/shared/struct/shr_db_item.erl index 3692a88..546462e 100644 --- a/src/shared/struct/sh_db_item.erl +++ b/src/shared/struct/shr_db_item.erl @@ -1,4 +1,4 @@ --module(sh_db_item). +-module(shr_db_item). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -8,7 +8,7 @@ db_item, { id :: any(), - perm :: sh_db_user:permission(), + perm :: shr_db_user:permission(), val :: any() } ). @@ -47,7 +47,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --spec new (any(), sh_db_user:permission(), any()) -> type(). +-spec new (any(), shr_db_user:permission(), any()) -> type(). new (ID, Permission, Value) -> #db_item { @@ -59,13 +59,13 @@ new (ID, Permission, Value) -> -spec get_id (type()) -> any(). get_id (#db_item { id = Result }) -> Result. --spec get_permission (type()) -> sh_db_user:permission(). +-spec get_permission (type()) -> shr_db_user:permission(). get_permission (#db_item { perm = Result }) -> Result. -spec get_value (type()) -> any(). get_value (#db_item { val = Result }) -> Result. --spec set_permission (sh_db_user:permission(), type()) -> type(). +-spec set_permission (shr_db_user:permission(), type()) -> type(). set_permission (Perm, Item) -> Item#db_item{ perm = Perm }. -spec set_value (any(), type()) -> type(). diff --git a/src/shared/struct/sh_db_query.erl b/src/shared/struct/shr_db_query.erl index 47d85d6..284cc2c 100644 --- a/src/shared/struct/sh_db_query.erl +++ b/src/shared/struct/shr_db_query.erl @@ -1,4 +1,4 @@ --module(sh_db_query). +-module(shr_db_query). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -36,7 +36,7 @@ ( set_perm, { - perm :: sh_db_user:permission() + perm :: shr_db_user:permission() } ). @@ -54,7 +54,7 @@ { db :: atom(), id :: any(), - user :: sh_db_user:user(), + user :: shr_db_user:user(), ops :: list(db_query_master_op()) } ). @@ -92,7 +92,7 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% LOCAL FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --spec get_user (db_query()) -> sh_db_user:user(). +-spec get_user (db_query()) -> shr_db_user:user(). get_user (#db_query{ user = Result }) -> Result. -spec apply_update_indexed (#update_indexed{}, any()) -> any(). @@ -142,27 +142,27 @@ apply_op_to (Op, Elem) when is_record(Op, update_indexed) -> -spec apply_master_op_to ( db_query_master_op(), - sh_db_item:type() + shr_db_item:type() ) - -> sh_db_item:type(). + -> shr_db_item:type(). apply_master_op_to (MOp, Elem) when is_record(MOp, set_perm) -> NewPerm = MOp#set_perm.perm, - sh_db_item:set_permission(NewPerm, Elem); + shr_db_item:set_permission(NewPerm, Elem); apply_master_op_to (MOp, Elem) when is_record(MOp, set_val) -> NewVal = MOp#set_val.val, - sh_db_item:set_value(NewVal, Elem); + shr_db_item:set_value(NewVal, Elem); apply_master_op_to (MOp, Elem) -> - OldValue = sh_db_item:get_value(Elem), + OldValue = shr_db_item:get_value(Elem), NewValue = apply_op_to(MOp, OldValue), - sh_db_item:set_value(NewValue, Elem). + shr_db_item:set_value(NewValue, Elem). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --spec new (atom(), any(), sh_db_user:user(), list(op())) -> type(). +-spec new (atom(), any(), shr_db_user:user(), list(op())) -> type(). new (DBName, ObjectID, User, Ops) -> #db_query { @@ -199,14 +199,14 @@ get_entry_id (#db_query{ id = Result }) -> Result. -spec apply_to ( db_query(), - sh_db_item:type() + shr_db_item:type() ) - -> ({'ok', sh_db_item:type()} | 'error'). + -> ({'ok', shr_db_item:type()} | 'error'). apply_to (DBQuery, DBItem) -> true = - sh_db_user:can_access + shr_db_user:can_access ( - sh_db_item:get_permission(DBItem), + shr_db_item:get_permission(DBItem), get_user(DBQuery) ), MOps = DBQuery#db_query.ops, diff --git a/src/shared/struct/sh_db_user.erl b/src/shared/struct/shr_db_user.erl index f2d4dfe..01840e2 100644 --- a/src/shared/struct/sh_db_user.erl +++ b/src/shared/struct/shr_db_user.erl @@ -1,4 +1,4 @@ --module(sh_db_user). +-module(shr_db_user). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/shared/struct/sh_statistics.erl b/src/shared/struct/shr_statistics.erl index 497cf41..cf48d96 100644 --- a/src/shared/struct/sh_statistics.erl +++ b/src/shared/struct/shr_statistics.erl @@ -1,4 +1,4 @@ --module(sh_statistics). +-module(shr_statistics). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -143,28 +143,28 @@ get_damages (Stats) -> -spec new ( - sh_attributes:type(), - {sh_weapon:id(), sh_weapon:id()}, - sh_armor:id() + shr_attributes:type(), + {shr_weapon:id(), shr_weapon:id()}, + shr_armor:id() ) -> type(). new (BaseAttributes, WeaponIDs, ArmorID) -> {ActiveWeaponID, _} = WeaponIDs, - ActiveWeapon = sh_weapon:from_id(ActiveWeaponID), - {MinDamage, MaxDamage} = sh_weapon:get_damages(ActiveWeapon), - Armor = sh_armor:from_id(ArmorID), + ActiveWeapon = shr_weapon:from_id(ActiveWeaponID), + {MinDamage, MaxDamage} = shr_weapon:get_damages(ActiveWeapon), + Armor = shr_armor:from_id(ArmorID), Attributes = - sh_armor:apply_to_attributes + shr_armor:apply_to_attributes ( Armor, - sh_weapon:apply_to_attributes(ActiveWeapon, BaseAttributes) + shr_weapon:apply_to_attributes(ActiveWeapon, BaseAttributes) ), - Constitution = sh_attributes:get_constitution(Attributes), - Dexterity = sh_attributes:get_dexterity(Attributes), - Intelligence = sh_attributes:get_intelligence(Attributes), - Mind = sh_attributes:get_mind(Attributes), - Speed = sh_attributes:get_speed(Attributes), - Strength = sh_attributes:get_strength(Attributes), + Constitution = shr_attributes:get_constitution(Attributes), + Dexterity = shr_attributes:get_dexterity(Attributes), + Intelligence = shr_attributes:get_intelligence(Attributes), + Mind = shr_attributes:get_mind(Attributes), + Speed = shr_attributes:get_speed(Attributes), + Strength = shr_attributes:get_strength(Attributes), DamageBaseModifier = damage_base_modifier(Strength), #statistics diff --git a/src/shared/struct/sh_weapon.erl b/src/shared/struct/shr_weapon.erl index 74c7a42..3ecb749 100644 --- a/src/shared/struct/sh_weapon.erl +++ b/src/shared/struct/shr_weapon.erl @@ -1,4 +1,4 @@ --module(sh_weapon). +-module(shr_weapon). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -124,7 +124,7 @@ get_ranges (Wp) -> get_damages (Wp) -> Coef = Wp#weapon.coef, {Min, Max} = damages_of_type(Wp#weapon.range_type, Wp#weapon.damage_mod), - {sh_math_util:ceil(Min * Coef), sh_math_util:ceil(Max * Coef)}. + {shr_math_util:ceil(Min * Coef), shr_math_util:ceil(Max * Coef)}. -spec can_parry (type()) -> boolean(). can_parry (Wp) -> (Wp#weapon.range_type == melee). @@ -382,23 +382,23 @@ from_id (24) -> }. -spec random_id () -> id(). -random_id () -> sh_roll:between(0, 24). +random_id () -> shr_roll:between(0, 24). -spec apply_to_attributes ( type(), - sh_attributes:type() + shr_attributes:type() ) - -> sh_attributes:type(). + -> shr_attributes:type(). apply_to_attributes (Weapon, Attributes) -> - Dexterity = sh_attributes:get_dexterity(Attributes), - Speed = sh_attributes:get_speed(Attributes), + Dexterity = shr_attributes:get_dexterity(Attributes), + Speed = shr_attributes:get_speed(Attributes), RangeModifier = Weapon#weapon.range_mod, DamageModifier = Weapon#weapon.damage_mod, Impact = (20.0 * Weapon#weapon.coef), - FullImpact = sh_math_util:ceil(Impact), - QuarterImpact = sh_math_util:ceil(Impact / 4.0), + FullImpact = shr_math_util:ceil(Impact), + QuarterImpact = shr_math_util:ceil(Impact / 4.0), ResultingDexterity = case RangeModifier of @@ -411,8 +411,8 @@ apply_to_attributes (Weapon, Attributes) -> light -> (Speed - QuarterImpact) end, - S0Attributes = sh_attributes:set_unsafe_speed(ResultingSpeed, Attributes), + S0Attributes = shr_attributes:set_unsafe_speed(ResultingSpeed, Attributes), S1Attributes = - sh_attributes:set_unsafe_dexterity(ResultingDexterity, S0Attributes), + shr_attributes:set_unsafe_dexterity(ResultingDexterity, S0Attributes), S1Attributes. diff --git a/src/shared/util/sh_array_util.erl b/src/shared/util/shr_array_util.erl index 6d976bc..0faff99 100644 --- a/src/shared/util/sh_array_util.erl +++ b/src/shared/util/shr_array_util.erl @@ -1,4 +1,4 @@ --module(sh_array_util). +-module(shr_array_util). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% diff --git a/src/shared/util/sh_math_util.erl b/src/shared/util/shr_math_util.erl index b2e2109..874bacc 100644 --- a/src/shared/util/sh_math_util.erl +++ b/src/shared/util/shr_math_util.erl @@ -1,4 +1,4 @@ --module(sh_math_util). +-module(shr_math_util). %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |