Difference between revisions of "Music"

From BotF2-Wiki
Jump to: navigation, search
(added: \Resources\Data\MusicPacks.xml)
(MusicPacks.xml)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__TOC__
 +
 
Folder: \Music
 
Folder: \Music
  
Files: https://bitbucket.org/mstrobel/BotF2/src/4bd3c04bb439e29cb543e1f020819b8df2e70bf4/Mainline/BotF2Client/Resources/Music/?at=default
 
  
 
At [[Option]]s it's possible to control volume.
 
At [[Option]]s it's possible to control volume.
Line 8: Line 9:
 
== MusicPacks.xml ==
 
== MusicPacks.xml ==
  
Since 2013-12-23 it's possible to set a playlist of themes to be played continuously, either sequencially or randomly. You can also define different themes for different empires.  
+
Due to different versions of the game are present (by different provider...one is original MStrobel's code at his repository) beware of with MusicPacks.xml is used in your version (just go to \Resources\Data\MusicPacks.xml and check content.
 +
 
 +
=== 2017-01-29 ===
 +
 
 +
*  <MusicPack Name="'''DefaultMusic'''" Path="Resources/Music">
 +
*  <MusicPack Name="'''Menu'''" Path="Resources/SoundFX/Menu">
 +
*  <MusicPack Name="'''GroundCombat'''" Path="Resources/SoundFX/GroundCombat">
 +
*  <MusicPack Name="'''TaskForceOrders'''" Path="Resources/SoundFX/TaskForceOrders">
 +
 
 +
=== 2015-08-01 ===
 +
 
 +
new structure: see https://bitbucket.org/kflanagan/supremacydev/commits/f7e2ee20cf048f8b2dd868d93968a6b50d6a06dd#comment-2161495
 +
 
 +
examples for new structure:
 +
*<MusicPack Name="Federation" Path="Resources/Music">
 +
*<MusicPack Name="Effects" Path="Resources/SoundFX">
 +
*<MusicPack Name="FedTaskForceOrders" Path="Resources/SoundFX/TaskForceOrders">
 +
 
 +
=== 2013-12-23 ===
 +
Since 2013-12-23 it's possible to set a playlist of themes to be played continuously, either sequencially or randomly. You can also define different themes for different empires. Therefore '''\Resources\Data\MusicPacks.[[xml]]''' must be edit manually.
 +
 
 +
*.flac, *.ogg or *.mp3 is recommend.
 +
 
 +
 
 +
To define your individual list just set it like this (mention that in xml-files between < !-- and --> content is deactivated, so you have to activate it).  
  
Therefore '''\Resources\Data\MusicPacks.[[xml]]''' must be edit manually.
+
  
To define your individual list just set it like this:
 
  
<?xml version="1.0" encoding="utf-8" ?>
+
*Bitbucket-Files: https://bitbucket.org/mstrobel/BotF2/src/4bd3c04bb439e29cb543e1f020819b8df2e70bf4/Mainline/SupremacyClient/Resources/Music/?at=default
<SimpleMusicPack>
+
<Track FadeTime="2">Music1.ogg</Track>
+
<Track FadeTime="2">Music2.ogg</Track>
+
<Track FadeTime="2">Music3.ogg</Track>
+
...
+
  </SimpleMusicPack>
+
  
Music files have to be at \Music.
+
*Forum (internal): http://star-trek-supremacy.proboards.com/thread/17/music-files (search entry thread/17/)
  
[[category:XML-files‏‎]]
+
[[category:XML-files‏‎]] [[category:Audio‏‎]]

Latest revision as of 18:57, 29 January 2017

Folder: \Music


At Options it's possible to control volume.


MusicPacks.xml

Due to different versions of the game are present (by different provider...one is original MStrobel's code at his repository) beware of with MusicPacks.xml is used in your version (just go to \Resources\Data\MusicPacks.xml and check content.

2017-01-29

  • <MusicPack Name="DefaultMusic" Path="Resources/Music">
  • <MusicPack Name="Menu" Path="Resources/SoundFX/Menu">
  • <MusicPack Name="GroundCombat" Path="Resources/SoundFX/GroundCombat">
  • <MusicPack Name="TaskForceOrders" Path="Resources/SoundFX/TaskForceOrders">

2015-08-01

new structure: see https://bitbucket.org/kflanagan/supremacydev/commits/f7e2ee20cf048f8b2dd868d93968a6b50d6a06dd#comment-2161495

examples for new structure:

  • <MusicPack Name="Federation" Path="Resources/Music">
  • <MusicPack Name="Effects" Path="Resources/SoundFX">
  • <MusicPack Name="FedTaskForceOrders" Path="Resources/SoundFX/TaskForceOrders">

2013-12-23

Since 2013-12-23 it's possible to set a playlist of themes to be played continuously, either sequencially or randomly. You can also define different themes for different empires. Therefore \Resources\Data\MusicPacks.xml must be edit manually.

  • .flac, *.ogg or *.mp3 is recommend.


To define your individual list just set it like this (mention that in xml-files between < !-- and --> content is deactivated, so you have to activate it).