How to run the media server.txt.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:3k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. What is the media server?
  2. The media server is a way for openkore to play sounds. It uses the SDL_mixer libraries, thus making it cross-platform (it works with Linux as well as Windows) across systems which SDL supports.
  3. Why a client-server design?
  4. OpenKore is most often used on the local computer - that is, on the computer that is sitting right in front (or near) you. However, OpenKore can also be used in a remote terminal (e.g. on a remote computer a hundred miles away from you). In a local host stuation, the sounds will play through the same computer as the bot and the server are running on. In a remote host situation, the bot will run in the remote terminal, while sounds will play at the computer where the server is running on (usually at the local computer). Having a client-server design makes the program more flexible.
  5. How do I run the media server?
  6. There are two parts to the media server: the client (plugin) and the server(mediaserver.pl). You would need to configure both in order to have sounds playing.
  7. Installing the plugin
  8. Get the mediaClient folder from the plugins module in SVN and copy that to the bot's (remote or local) plugin folder. In the bot's config.txt, add this line:
  9.   mediaServer your.ip.goes.here
  10. if the bot is remotely hosted. And that's it.
  11. Configuring the media server
  12. Running the server itself takes a bit more work, especially if you are running your bot remotely. As of now, there isn't any easy way of configuring the server (support for ease-of-use will be done once the media server is practically complete). So you would have to hardcode most of the stuff here.
  13. Before you can run the media server, you would need to have ActivePerl as well as SDL_perl installed. Get ActivePerl from www.activestate.com and after installing it, type this at a command prompt:
  14.   ppm install http://www.bribes.org/perl/ppm/SDL_Perl.ppd
  15. and ppm should install the required libraries for you. Make sure you have an internet connection when you do this. In Linux, just install libsdl and libsdl_perl from your favorite package distributor.
  16. If you're running your bot remotely, find this line in mediaserver.pl:
  17.   use constant MEDIA_SERVER_HOST => '127.0.0.1';
  18. and modify it accordingly. If you're running your bot locally, you don't have to configure anything else right now.
  19. The sounds can either be in ogg format (preferred) or in wav format. Sound files in the mp3 format aren't supported in Windows. Create a folder under MediaServer called "sounds" and under it, make a folder named "SFX "ALERT" and "BGM" - it should look like this:
  20.   openkore
  21.      |---src
  22.           |---MediaServer
  23.                    |---sounds
  24.                    |---ALERT
  25.                    |---SFX
  26.                    |---BGM
  27. Save all alert-related stuff in the ALERT folder, sound-effects related stuff in the SFX folder (not yet complete) and background-music stuff in the BGM folder.
  28. Configuring alerts: Inside the openkore/src/MediaServer/sounds/ALERT folder, create sound files with filenames based on this hash:
  29.   %ALERT = (
  30.   public_chat => 'public_chat.ogg',
  31.   private_message => 'private_message.ogg',
  32.   system_chat => 'system_chat.ogg',
  33.   guild_chat => 'guild_chat.ogg',
  34.   party_chat => 'party_chat.ogg',
  35.   shop_sold => 'shop_sold.ogg',
  36.   );
  37. and the specified file will play on the events associated with them.
  38. Running the media server:
  39. You can run mediaserver.pl by typing
  40.   perl mediaserver.pl
  41. at a command prompt inside the MediaServer folder.