From e1e7d5215ed2c4baa088f3626f6b0a41becc8220 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 31 Jan 2019 06:31:04 +0100 Subject: [PATCH] Add more mob sound cooloffs --- mods/ENTITIES/mcl_mobs/api.lua | 20 ++++++++++++++------ mods/ENTITIES/mcl_mobs/api.txt | 4 +++- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/mods/ENTITIES/mcl_mobs/api.lua b/mods/ENTITIES/mcl_mobs/api.lua index 60b6a5ba..562184d1 100644 --- a/mods/ENTITIES/mcl_mobs/api.lua +++ b/mods/ENTITIES/mcl_mobs/api.lua @@ -98,14 +98,18 @@ local mod_tnt = minetest.get_modpath("mcl_tnt") ~= nil local mod_mobspawners = minetest.get_modpath("mcl_mobspawners") ~= nil -- play sound -local mob_sound = function(self, sound) +local mob_sound = function(self, sound, is_opinion) if sound then + if is_opinion and self.opinion_sound_cooloff > 0 then + return + end minetest.sound_play(sound, { object = self.object, gain = 1.0, max_hear_distance = self.sounds.distance }) + self.opinion_sound_cooloff = 1 end end @@ -121,7 +125,7 @@ local do_attack = function(self, player) self.state = "attack" if random(0, 100) < 90 then - mob_sound(self, self.sounds.war_cry) + mob_sound(self, self.sounds.war_cry, true) end end @@ -1291,10 +1295,10 @@ local smart_mobs = function(self, s, p, dist, dtime) self.path.stuck_timer = stuck_timeout - 2 -- frustration! cant find the damn path :( - mob_sound(self, self.sounds.random) + mob_sound(self, self.sounds.random, true) else -- yay i found path - mob_sound(self, self.sounds.war_cry) + mob_sound(self, self.sounds.war_cry, true) set_velocity(self, self.walk_velocity) -- follow path now that it has it @@ -2702,6 +2706,7 @@ local mob_activate = function(self, staticdata, def, dtime) self.visual_size = vis_size self.standing_in = "" self.jump_sound_cooloff = 0 -- used to prevent jump sound from being played too often in short time + self.opinion_sound_cooloff = 0 -- used to prevent sound spam of particular sound types -- check existing nametag if not self.nametag then @@ -2776,6 +2781,9 @@ local mob_step = function(self, dtime) if self.jump_sound_cooloff > 0 then self.jump_sound_cooloff = self.jump_sound_cooloff - dtime end + if self.opinion_sound_cooloff > 0 then + self.opinion_sound_cooloff = self.opinion_sound_cooloff - dtime + end falling(self, pos) -- smooth rotation by ThomasMonroe314 @@ -2854,7 +2862,7 @@ local mob_step = function(self, dtime) -- mob plays random sound at times if random(1, 100) == 1 then - mob_sound(self, self.sounds.random) + mob_sound(self, self.sounds.random, true) end -- environmental damage timer (every 1 second) @@ -3662,7 +3670,7 @@ function mobs:feed_tame(self, clicker, feed_count, breed, tame) end -- make sound when fed so many times - mob_sound(self, self.sounds.random) + mob_sound(self, self.sounds.random, true) end return true diff --git a/mods/ENTITIES/mcl_mobs/api.txt b/mods/ENTITIES/mcl_mobs/api.txt index 599ee9cf..fdc798d8 100644 --- a/mods/ENTITIES/mcl_mobs/api.txt +++ b/mods/ENTITIES/mcl_mobs/api.txt @@ -131,7 +131,9 @@ functions needed for the mob to work properly which contains the following: 'makes_footstep_sound' when true you can hear mobs walking. 'sounds' this is a table with sounds of the mob 'distance' maximum distance sounds can be heard, default is 10. - 'random' random sound that plays during gameplay. + 'random' played randomly from time to time. + also played when mob is frustrated for not finding the path. + also played for overfeeding animal. 'war_cry' what you hear when mob starts to attack player. 'attack' what you hear when being attacked. 'shoot_attack' sound played when mob shoots. -- 2.11.4.GIT