mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-08 03:20:21 +01:00
added new music mod with 3 musics, random play 15 at 30 minutes
This commit is contained in:
parent
1cff87fd2d
commit
a97652c6ce
1
mods/music/depends.txt
Executable file
1
mods/music/depends.txt
Executable file
|
@ -0,0 +1 @@
|
|||
soundset?
|
85
mods/music/init.lua
Executable file
85
mods/music/init.lua
Executable file
|
@ -0,0 +1,85 @@
|
|||
|
||||
local players = {}
|
||||
local music_volume = 1
|
||||
local SOUNDVOLUME = 1
|
||||
-- compatibility with soundset mod
|
||||
local get_volume
|
||||
if (minetest.get_modpath("soundset")) ~= nil then
|
||||
get_volume = soundset.get_gain
|
||||
else
|
||||
get_volume = function (player_name, sound_type) return SOUNDVOLUME end
|
||||
-- set volume command
|
||||
minetest.register_chatcommand("svol", {
|
||||
params = "<svol>",
|
||||
description = "set sound volume (0.1 to 1.0)",
|
||||
privs = {server=true},
|
||||
func = function(name, param)
|
||||
if tonumber(param) then
|
||||
SOUNDVOLUME = tonumber(param)
|
||||
minetest.chat_send_player(name, "Sound volume set.")
|
||||
else
|
||||
minetest.chat_send_player(name, "Sound volume no set, bad param.")
|
||||
end
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
|
||||
local musics = {
|
||||
{name="StrangelyBeautifulShort", length=3*60+.5, gain=music_volume*.7},
|
||||
--{name="Loneliness", length=3*60+51, gain=music_volume*.9},
|
||||
--{name="AvalonShort", length=2*60+58, gain=music_volume*1.4},
|
||||
--{name="Aube", length=2*60+24, gain=music_volume*1.8},
|
||||
--{name="Interlude", length=3*60+30.5, gain=music_volume*1.8},
|
||||
--{name="mtest", length=4*60+33, gain=music_volume},
|
||||
--{name="echos", length=2*60+26, gain=music_volume},
|
||||
--{name="FoamOfTheSea", length=1*60+50, gain=music_volume},
|
||||
--{name="Ambivalent", length=2*60+31, gain=music_volume*.9},
|
||||
--{name="eastern_feeling", length=3*60+51, gain=music_volume},
|
||||
--{name="Mass_Effect_Uncharted_Worlds", length=2*60+29, gain=music_volume},
|
||||
{name="EtherealShort", length=3*60+4, gain=music_volume*.7},
|
||||
--{name="Mute", length=3*60+43, gain=music_volume*.9},
|
||||
--{name="FarawayShort", length=3*60+5, gain=music_volume*.7},
|
||||
{name="dark_ambiance", length=44, gain=music_volume}
|
||||
}
|
||||
|
||||
|
||||
-- stops all sounds that are not in still_playing
|
||||
local stop_sound = function(player_name)
|
||||
if players[player_name] ~= nil then
|
||||
minetest.sound_stop(players[player_name])
|
||||
players[player_name] = nil
|
||||
end
|
||||
end
|
||||
|
||||
-- start playing the sound, set the handler and delete the handler after sound is played
|
||||
local play_sound = function(player_name, music, gain)
|
||||
if players[player_name] == nil then
|
||||
local handler = minetest.sound_play(music.name, {to_player=player_name, gain=music.gain*gain})
|
||||
if handler ~= nil then
|
||||
players[player_name] = handler
|
||||
minetest.after(music.length, stop_sound, player_name)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
local function tick()
|
||||
for _, player in ipairs(minetest.get_connected_players()) do
|
||||
local player_name = player:get_player_name()
|
||||
local gain = get_volume(player_name, "music")
|
||||
if gain > 0 and players[player_name] == nil then
|
||||
local music = musics[math.random(#musics)]
|
||||
play_sound(player_name, music, gain)
|
||||
end
|
||||
end
|
||||
minetest.after(math.random(15,30)*60, tick)
|
||||
end
|
||||
|
||||
minetest.register_on_leaveplayer(function(player)
|
||||
local player_name = player:get_player_name()
|
||||
stop_sound(player_name)
|
||||
end)
|
||||
|
||||
minetest.after(60, tick)
|
||||
|
BIN
mods/music/sounds/EtherealShort.ogg
Executable file
BIN
mods/music/sounds/EtherealShort.ogg
Executable file
Binary file not shown.
119
mods/music/sounds/SoundLicenses.txt
Executable file
119
mods/music/sounds/SoundLicenses.txt
Executable file
|
@ -0,0 +1,119 @@
|
|||
--------------Music Lic:
|
||||
Amethystium:
|
||||
--Avalon
|
||||
--Ethereal
|
||||
--Faraway
|
||||
--Strangely Beautiful
|
||||
Used with kind permission from Øystein Ramfjord / AM.mu Records
|
||||
|
||||
Jordach:
|
||||
--dark_ambiance
|
||||
--eastern_feeling
|
||||
These sounds are used for the Mod for Minetest; Ambiance.
|
||||
The included sounds are http://creativecommons.org/licenses/by-nc-sa/3.0/
|
||||
Not Used:--mtest
|
||||
|
||||
Obani:
|
||||
--Interlude
|
||||
This sounds is under the license CC-BY-SA
|
||||
|
||||
-----------Sound Lic:
|
||||
--Nightime Sound, Recorded by Mike Koenig, License: Attribution 3.0 http://soundbible.com/951-Nightime.html
|
||||
--Crickets At Night Sound, License: Attribution 3.0 | Recorded by Mike Koenig |http://soundbible.com/365-Crickets-At-Night.html
|
||||
|
||||
--Medium Pack Of Wolves Howling, License: Public Domain | Recorded by fws.gov, http://soundbible.com/277-Medium-Pack-Of-Wolves-Howling.html
|
||||
|
||||
--Horned Owl Sound, License: Attribution 3.0 | Recorded by Mike Koenig , http://soundbible.com/1851-Horned-Owl.html
|
||||
--Bats In Cave Sound, License: Attr-Noncommercial 3.0 | Recorded by Mike Koenig , http://soundbible.com/1939-Bats-In-Cave.html
|
||||
|
||||
--Spooky Water Drops Sound, License: Attribution 3.0 | Recorded by Mike Koenig, http://soundbible.com/380-Spooky-Water-Drops.html
|
||||
|
||||
|
||||
-- Single Water Droplet Sound, License: Attribution 3.0 | Recorded by Mike Koenig, http://soundbible.com/384-Single-Water-Droplet.html
|
||||
|
||||
--HollowWind, Black Boe, Creative Commons 0 License, http://www.freesound.org/people/Black%20Boe/sounds/22331/
|
||||
|
||||
--drippingwater*.ogg sounds: CC0, Dripping Water Mod, by kddekadenz, http://minetest.net/forum/viewtopic.php?id=1688
|
||||
|
||||
--best cardinal bird: License: Attribution 3.0 | Recorded by PsychoBird, http://soundbible.com/1515-Best-Cardinal-Bird.html
|
||||
|
||||
--birdsongnl: the Attribution License, HerbertBoland, http://www.freesound.org/people/HerbertBoland/sounds/28312/ (end)
|
||||
|
||||
--robin2: Attribution License, reinsamba, http://www.freesound.org/people/reinsamba/sounds/32479/ (end)
|
||||
|
||||
--Craw.WAV, Attribution License, inchadney, http://www.freesound.org/people/inchadney/sounds/52450/
|
||||
|
||||
--bluejay.wav, Creative Commons 0 License, UncleSigmund, http://www.freesound.org/people/UncleSigmund/sounds/42382/
|
||||
|
||||
--scuba1*.ogg- digifishmusic, Attribution License, http://www.freesound.org/people/digifishmusic/sounds/45521/
|
||||
|
||||
--Underwater Pool - Attribution 3.0 | Recorded by Mike Koenig, http://soundbible.com/1660-Underwater-Pool.html
|
||||
|
||||
--dolphin_screaming - Creative Commons 0 License, felix.blume, http://www.freesound.org/people/felix.blume/sounds/161691/
|
||||
|
||||
--dolphins - Attribution Noncommercial License, acclivity, http://www.freesound.org/people/acclivity/sounds/13691/
|
||||
|
||||
ComboWind uses:
|
||||
--wind-in-the-trees -Attribution License, laurent, http://www.freesound.org/people/laurent/sounds/16995/
|
||||
--drygrassInWind- Creative Commons 0 License, felix.blume, http://www.freesound.org/people/felix.blume/sounds/146436/
|
||||
|
||||
--Splash: Attribution 3.0 | Recorded by BlastwaveFx.com, http://soundbible.com/546-Fish-Splashing.html
|
||||
|
||||
--small_waterfall Attribution License, volivieri, http://www.freesound.org/people/volivieri/sounds/38390/
|
||||
|
||||
--Lake_Waves_2*, Attribution License, Benboncan, http://www.freesound.org/people/Benboncan/sounds/67884/
|
||||
|
||||
--water_swimming_splashing*, Attribution Noncommercial License, Robinhood76, http://www.freesound.org/people/Robinhood76/sounds/79657/
|
||||
|
||||
--earth01a, Creative Commons 0 License., Halion , http://www.freesound.org/people/Halion/sounds/17785
|
||||
|
||||
--fiji_beach, Creative Commons 0 License, c97059890, http://www.freesound.org/people/c97059890/sounds/21754/
|
||||
|
||||
--seagull, Attribution Noncommercial License., hazure, http://www.freesound.org/people/hazure/sounds/23707/,
|
||||
|
||||
desert:
|
||||
coyote2, Attribution License, rogerforeman, http://www.freesound.org/people/rogerforeman/sounds/68068/
|
||||
http://www.freesound.org/people/Proxima4/sounds/104319/
|
||||
Desert Monolith.wav, Creative Commons 0 License, Proxima4, http://www.freesound.org/people/Proxima4/sounds/104319/
|
||||
Rattlesnake Rattle, Public Domain, fws.gov, http://soundbible.com/237-Rattlesnake-Rattle.html
|
||||
|
||||
flying:
|
||||
crystal_airlines: Attribution License, suonho, http://www.freesound.org/people/suonho/sounds/56364/
|
||||
|
||||
----------------Not used yet:
|
||||
desert:
|
||||
Desert Simple.wav, Creative Commons 0 License, Proxima4, http://www.freesound.org/people/Proxima4/sounds/104320/
|
||||
|
||||
313hummer (Jordan Craige)
|
||||
--echos http://soundcloud.com/jordan-craige/echos-1
|
||||
Creative Commons Attribution license (reuse allowed) Attribution 3.0 Unported (CC BY 3.0)
|
||||
Not Used:--FoamOfTheSea http://soundcloud.com/jordan-craige/foam-of-the-sea
|
||||
|
||||
xi-intersection:
|
||||
http://soundcloud.com/xi-intersection/mass-effect-uncharted-worlds Creative Commons License
|
||||
--not used:
|
||||
http://soundcloud.com/xi-intersection/donkey-kong-country-2-flight
|
||||
http://soundcloud.com/kogyo/kogyo-skalar-m1
|
||||
|
||||
lava:
|
||||
http://www.freesound.org/people/Halion/sounds/17785/ (almost as good cc) (combine with rocks falling?)
|
||||
http://www.freesound.org/people/pushtobreak/sounds/17823/ (attrib non cc really good)
|
||||
http://www.freesound.org/people/klankbeeld/sounds/123970/ (horror rhythm)
|
||||
Rockfall in mine.wav http://www.freesound.org/people/Benboncan/sounds/60085/
|
||||
|
||||
|
||||
http://www.freesound.org/people/snotch/sounds/96175/ (mud volcano)
|
||||
|
||||
--natural night sounds in Boquete.wav, Attribution License, laurent, http://www.freesound.org/people/laurent/sounds/15851/
|
||||
http://www.freesound.org/people/Dynamicell/sounds/17553/
|
||||
http://www.freesound.org/people/juskiddink/sounds/78955/ aspen tree in wind
|
||||
http://www.freesound.org/people/Benboncan/sounds/69761/ wind in hedge birds animals
|
||||
|
||||
|
||||
ButterflyTea:
|
||||
Creative Commons : Attribution-Noncommercial-Share Alike 3.0
|
||||
http://www.jamendo.com/en/track/904012/dance-of-magical-flowers
|
||||
http://www.jamendo.com/en/track/904013/magic-of-the-seventh-world
|
||||
http://www.jamendo.com/en/track/904016/in-search-of-the-soul
|
||||
|
||||
zero-project
|
BIN
mods/music/sounds/StrangelyBeautifulShort.ogg
Executable file
BIN
mods/music/sounds/StrangelyBeautifulShort.ogg
Executable file
Binary file not shown.
BIN
mods/music/sounds/dark_ambiance.ogg
Executable file
BIN
mods/music/sounds/dark_ambiance.ogg
Executable file
Binary file not shown.
|
@ -203,6 +203,7 @@ load_mod_irc_commands = true
|
|||
load_mod_soundset = true
|
||||
load_mod_ambience = true
|
||||
load_mod_jukebox = true
|
||||
load_mod_music = true
|
||||
|
||||
load_mod_areas = true
|
||||
load_mod_markers = true
|
||||
|
|
Loading…
Reference in New Issue
Block a user