找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 761|回复: 12

MangOs搭建魔兽世界私服

[复制链接]

983

主题

83

回帖

5万

积分

管理员

积分
53122
发表于 2022-7-29 09:16:01 | 显示全部楼层 |阅读模式
话不多说,开整!7 f/ `) g1 u( l
考虑再三,我选择了CentOs来做游戏的服务端操作系统。" Y! q9 H% k6 f2 G# f' ~
通过Git获得Mangos的源码之后自行编译搭建服务器。
4 }: z3 o8 j6 J' c) A/ O9 @9 f这么做处于几方面的考虑。. a4 o$ b6 m5 j! y
  • 我看不起Windows操作系统。
  • 我更看不起那些Win系列一键安装包。
  • 考虑的可持续运行的服务器,Centos肯定是不二之选。
  • 不自己编译安装,怎么能进步呢?
  • 万一后期自己想修改游戏,设计任务,添加物品呢?
  • 没错,我就喜欢开手动挡。自动挡,那是给残疾人开的。: v% @( F, \$ ]6 F
首先在本地安装虚拟机,虚拟一台纯净的Centos7操作系统。
. K+ R6 J) @/ E. E8 ]3 g把该打的补丁都给打了(yum update)/ P# W, n6 N; [# u! V
完了之后,咱们安装一些基础的组件和环境。
& Z) ^8 ]" x/ q( B7 z$ BYum install git cmake gcc patch autoconf mariadb-server mariadb-devel libtool zfstream gcc-c++ subversion boost-devel- L) Y4 R2 f4 t+ v) G0 q( |; d% U
如果有些组件提示没找到,无所谓。继续往下。
; e8 @7 n! j* ]我编译安装的第一个版本是cmangos。
8 K: Z( p( G+ m8 A: H这个版本支持机器人,地图提取工具。在编译的时候可以添加参数。
0 d* A. a" ?* Z& Acmake -DCMAKE_INSTALL_PREFIX= -DBUILD_EXTRACTORS=ON -DPCH=1 -DDEBUG=0 -DBUILD_PLAYERBOT=ON: N, Z3 T1 D# @" F1 J* N
编译参数中:; {4 \# ~6 D& D
DCMAKE_INSTALL_PREFIX是指你的服务端安装目录,可以自定义。
8 D: N" S$ ^; p' M" z$ QDBUILD_EXTRACTORS是指是否安装地图提取工具! g7 L' u1 Q* P2 X6 g/ c. o
DBUILD_PLAYERBOT是指是否打开机器人
: C3 R) L8 ], G这里我做科普2:, Z& g! o: a8 Z) s; t
首先是科普1我们提到过,MangOs是一个大型多人在线角色扮演的游戏服务器程序框架。理论上他是可以模拟所有的络游戏的。0 d' h& F( @! c5 Z2 Q( u1 Q
既然,现在我们用它来模拟魔兽世界。那么肯定要对魔兽世界进行独立的一些补充(数据补充)。这就是上边地图提取工具那个参数的作用。我们需要上传一个魔兽客户端(你想要搭建的版本)的地图文件。然后我们使用地图提取工具,对客户端进行分析和提取。配上专用的数据库来模拟暴雪的游戏服务端。
) v% p: b% z9 O  {* a& W至于那个机器人吗?那是个笑话,请自行忽略。# W0 _2 l; F7 Z/ T, a# `
我们继续,我把整理好的搭建步骤列一个明细:( u, E4 P! n' W6 i7 j
  • 首先使用git选择一个自己喜欢的版本git到本地服务器。
  • 然后设置编译参数开始编译。
  • 提取地图放到服务端(下载别人编译好的可以不用自己提取)。
  • 下载安装导入数据库(感谢Mangos使用了mysql数据库)
  • 对服务器进行配置。
  • 启动服务器。
  • 配置客户端的服务器链接地址。
  • 开始游戏。
    5 S  ~( f1 }0 W. ^
这中间,我把一些别人不会告诉你的关键步骤做科普3:
" R4 J# d  m7 e( O+ _
  • 在编译的时候需要用到gcc、cmake3、ace等几个核心支持。
  • 某些特殊的服务器版本,不支持地图提取工具的参数。只能曲线救国去找,下载别人提取好的地图文件(我这里去找了个别人制作的win一键安装包,借用了他们的地图文件)。
  • 数据库汉化是个细致的活儿。没有编程数据库基础的,建议曲线救国。
  • 有些魔兽客户端版本,并没有太好的大脚插件支持。(反正我玩怀旧感觉大脚怀旧服专用版就做得很好,可惜不兼容我的1.12.1)3 H+ `' r" X" x0 D. r8 f
放几个链接仅做Mark:% F- r* W5 W, E% M
Cmake3 安装) b$ v/ K6 {* [3 W2 W& Z0 \/ z- Z3 o
https://blog.csdn.net/weixin_38883338/article/details/86408749
/ Y  I( Y1 z/ c+ `# a5 Y' OGcc 6
1 u( j# U2 e8 X. Vhttps://blog.csdn.net/Al_xin/article/details/92438055
7 ]" B2 p9 t5 v* qACE6.3.3
6 Z) |$ y+ l. Dhttps://blog.csdn.net/u010587274/article/details/50965369
5 b+ |2 Z0 r/ x  K  k  |, s& ~- ?Git源码和数据库编译安装服务器
- h2 t7 G% J( [& T" zgit clone git://github.com/cmangos/mangos-classic.git mangos- w$ L4 n3 _% {+ ?+ W
git clone git://github.com/cmangos/classic-db.git
1 t+ J# h7 j) Y( _2 v, YACE的编译安装和地图提取,确实有点耗费性能和时间,不过地图和数据库后期你熟悉了可以越过,而上述三个环境的安装是铁定要做的。8 F% C9 V7 x7 u8 P$ E% `& ~2 M2 z
我们来说一下服务器的配置。5 o9 ~/ r. e  C5 H# x
在编译好服务端,上传提取好的地图后。我们要设置两个文件来启动服务器。分别是etc目录下的:9 w5 z2 X# z  G9 F+ [- g7 _
  • mangosd.conf(服务器参数配置)
  • realmd.conf(账户认证服务配置)% O+ x$ a: A& F6 w' b! a
有几个关键点,我整理如下:! T0 j4 `7 I" I/ q. E1 _! n: U( W
  • 首先是地图目录的配置,你可以写绝对路径,或者相对路径。只要写不正确,服务器启动不起来。会提示xxx.map exits之类的。意思就是找不到地图文件。
  • 你要配置数据库的链接地址这里可以连接远程,本地都ok。只要连接地址、数据库用户名、密码、数据库名字正确就ok。
  • 我们一般会配置一下进入游戏的欢迎语,人物出生的携带金钱和出生等级,还有打怪升级的经验倍数这些参数。
  • 如果你需要做一些有特色的的东西。可能就涉及到修改数据库了。比如说人物出生送T3套装。这个就需要去数据库中进行配置。
  • 如果你是为了让朋友一起来玩。就吧那个BindIP给注释掉。否则可能引起一些无法连上服务器的奇怪现象。" M+ k' P  U; u) }3 d) W
参数名称:' r/ \$ S/ A! y0 M% N
地图目录
* m  L) R4 B5 n0 O# _$ C$ _% [DataDir = “../data” " E5 b1 o& _, k& D2 G1 c
日志目录1 ]% Q4 H" P% J9 p3 b, E
LogsDir = “../logs”' \' Q$ ~: X3 G, a( ^0 }1 E
游戏欢迎语
# E4 k: r: R  cMotd= “游戏欢迎语”
( u4 f- K& b0 @/ M# `" Y8 K$ n5 |出生等级$ G# t$ ]  z/ M& i4 U, }
StartPlayerLevel = 1
! n' \0 C$ L: O  _7 g出生携带金钱1000G: |: E. G- a$ S& b* J! A* m$ g
StartPlayerMoney = 10000000" o- N) u3 B  u" D1 R9 B( v
杀怪经验5倍
! J/ B1 L* w  ?: KRate.XP.Kill    = 5
5 o$ S' S3 y; E( z1 p6 B  N任务经验15倍
9 E% ^8 N. G3 }! j# X7 kRate.XP.Quest   = 15
' y' |+ a( ~6 g4 ]9 T, h探索地图10倍6 m" I! \# h# d) j9 n* q& j5 w
Rate.XP.Explore = 10
2 i& z: p8 y+ c1 X3 p数据库连接(应该有3-4条之多,按下面格式修改即可)4 f* c2 U9 c# q; Y7 M' q  I/ T
LoginDatabase.Info              = “地址;端口;用户名;密码;数据库”6 U$ X! {" X2 [: j4 N/ J/ k
配置结束,就是启动。3 V9 u* Y/ D9 |% e. v
因为,我们搭建的服务器属于广域网,可以让朋友一起来玩的。那么肯定要对防火墙这些进行配置。否则防火墙会阻断服务端提供服务。: F: ]0 E) R* F* O9 r
我们需要开启如下端口:+ d' f0 q: f, r" Y$ @
8085,9600,3724
* I/ d/ W( `+ {% Q把他们添加到你防火墙的白名单即可。. Y, |1 k/ e3 W$ B- E% ]
(当然,考虑安全呢你可以修改一下端口号。这我就不多费口舌了)$ R4 A0 ~; e. e0 ]$ S, F" F
一些收尾工作:
$ D0 S3 V( s$ H. T
  • 主要是对服务器进行安全加固,例如修改ssh登录端口,禁止root登录。开启防火墙等等。
  • 对游戏数据进行定时备份。毕竟是自己家的服务器,有时候可能会来做一些测试。数据备份显得就非常重要了。我反正是1小时已备份。这个用shell脚本去备份mysql数据库即可(注意清理)。
  • 可以要制作一个网页,开放给新用户去注册、修改密码、下载客户端等等。这个就是另一项技术了。有机会我们再聊。0 P8 A3 k+ v% }

游戏登录界面

游戏登录界面

成功进入游戏

成功进入游戏

server.zip

148 Bytes, 下载次数: 2

database.zip

10.65 MB, 下载次数: 2

ACE-6.4.7.tar.gz

12 MB, 下载次数: 2

ACE-6.3.3.tar.gz

11.87 MB, 下载次数: 2

cmake-3.0.0.tar.gz

5.24 MB, 下载次数: 2

rarlinux-x64-5.0.0.tar.gz

1.08 MB, 下载次数: 3

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-29 16:13:58 | 显示全部楼层
yum install git
2 q7 T% i  K4 ]9 W. Wgit clone https://github.com/mangostwo/server.git
0 R/ B5 l) U! S% F" c. e' Hgit clone https://github.com/mangostwo/database.git1 o# L) {* _2 U* O

0 F6 e  V% q  a( _$ [! O; \
  1. <div><span class="hl hl-1">wget</span> https://cmake.org/files/v3.0/cmake-3.0.0.tar.gz</div><div>tar xvf cmake-3.0.0.tar.gz && cd cmake-3.0.0/</div><div>./<span class="hl hl-1">bootstrap</span></div><div>gmake</div><div>gmake install</div><div>/usr/local/bin/cmake --version</div><div>yum remove cmake -y</div><div>ln -s /usr/local/bin/cmake /usr/bin/</div><div>cmake --version</div>
复制代码
  1. yum -y install centos-release-scl
    7 w3 h7 J' [2 j8 p, ^' L8 q: g6 A
  2. yum -y install devtoolset-7-gcc devtoolset-7-gcc-c++ devtoolset-7-binutils
    & ~6 G  [$ p: m5 |) n( e3 V' M
  3. scl enable devtoolset-7 bash
    + b, F$ z1 ]1 g7 E
  4. echo "source /opt/rh/devtoolset-7/enable" >>/etc/profile
    3 _: z! _9 ~8 U* O- j
  5. # 查看安装的包9 z: X/ m- D/ Z. u. W! w- S$ ]
  6. scl -l
    9 @' l7 ^* Y2 @. G1 ]8 S; a
  7. yum -y install rh-python358 T, J& T2 x9 ?5 g0 l
  8. scl enable rh-python35 bash
    ; d" f/ t, Q' ?/ ?
  9. echo "source /opt/rh/rh-python35/enable" >>/etc/profile
    # n# \3 I$ d& R- ?; ^. L
  10. 3 e' ^9 Z( z" b0 t) L
复制代码
  1. wget -c https://download.dre.vanderbilt.edu/previous_versions/ACE-6.3.3.tar.gz
    / f/ C% k/ i: U+ c$ n& m; i
  2. tar -xvf ACE-6.3.3.tar.gz8 q/ I$ h3 f, k& N- o. C7 x4 [
  3. vi /etc/profile
    9 |6 @$ u' q* x  d( y2 l
  4. #在文本尾部添加:
    7 l, d& ^! @3 W( k+ p4 ^
  5. export ACE_ROOT=/root/ACE_wrappers/ A* F8 b" j, `- \, X
  6. export LD_LIBRARY_PATH=$ACE_ROOT/lib:$LD_LIBRARY_PATH* m! Y7 O) z3 r. a- u5 T1 }  Y
  7. vi /root/ACE_wrappers/ace/config.h) ~9 K* U- m- E# M% @
  8. #写入如下内容:
    / u+ F* l+ q" U1 W) `4 {& `6 n
  9. <code>#include "ace/config-linux.h"
    : N- D3 R9 x$ B3 \3 e7 e  w
  10. </code>
    2 \( f& r2 x( x' d5 i+ ~
  11. vi /root/ACE_wrappers/include/makeinclude/platform_macros.GNU
    & C4 P0 Z4 l4 Q0 x
  12. 写入如下内容:# N6 l) [! k" N3 S( z* I5 F/ [
  13. <code>include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU</code>% @, t# O1 j" K& H% k
  14. <code>INSTALL_PREFIX = /usr/local</code>
    ) H5 Y3 J/ r' e3 f. F' q

  15. ! f! |& u( ~1 B& W
  16. chmod 775 -R /root/ACE_wrappers
    ( u: X- v/ x! s
  17. cd /root/ACE_wrappers/9 J4 N- \# [0 i6 W: M6 f1 }3 w
  18. make
    # g1 V% ^' v0 |1 L; [
  19. make install
    : ?( h2 Y; n1 A% C1 ~3 a
复制代码
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-29 17:20:43 | 显示全部楼层
  1. wget -c https://raw.githubusercontent.com/mangostwo/server/master/linux/getmangos.sh && bash getmangos.sh
复制代码
  1. #!/bin/bash) p" J4 m. s5 O5 E' A+ u% S
  2. ###############################################################################
    7 q( z- F3 A4 s6 r6 e
  3. # MaNGOS Build Automation Script                                              #
    & [' n6 U  `6 h6 O' x  f  M
  4. # Written By: Ryan Ashley                                                     #4 n1 \8 N% f9 Q+ n9 h
  5. # Updated By: Cedric Servais                                                  #
    3 u+ L1 Q' D+ N* p9 M1 z
  6. # Copyright (C) 2014-2022 MaNGOS https://getmangos.eu/                        #  q4 G5 H# h% P  z1 |) q  z
  7. #                                                                             #9 Z% [5 c( J+ @1 y: Z0 m7 p8 i, T
  8. # This program is free software; you can redistribute it and/or modify        #% l+ W3 {( F, I; m7 x; b
  9. # it under the terms of the GNU General Public License as published by        #
    2 a5 y* G# k. V6 y
  10. # the Free Software Foundation; either version 2 of the License, or           #
    1 c) V, ~4 O5 H! i$ Q4 S
  11. # (at your option) any later version.                                         #
    1 |) m) l0 {( P( O
  12. #                                                                             #
    / ~! n" t2 [7 r; c! s
  13. # This program is distributed in the hope that it will be useful,             #8 N% ^$ v. p1 m. f
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of              #
    8 }; c  K1 \4 r" v" ?% C) e
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                #2 [; [% m9 E7 \/ Q1 {' w& a! }
  16. # GNU General Public License for more details.                                #. y: g8 k# `2 z. i2 ^; x3 [
  17. #                                                                             #
    $ r3 Q7 l: I! ~2 K1 y
  18. # You should have received a copy of the GNU General Public License           #+ G: O" G) K% ^5 z. \
  19. # along with this program; if not, write to the Free Software                 #( F8 P* H- u# n6 L5 z& {
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA     #
    ! U# |6 M5 U" a, S% _
  21. ###############################################################################9 H  B" q& {3 d" j4 T9 w6 j: O

  22. " D9 R) m: J5 ?/ {: g' t
  23. # Global variables
    4 t9 y( ^- R1 W
  24. DLGAPP="whiptail"5 E" ]5 N; j: w2 m
  25. VERSION="2"$ v$ T2 b# B3 y0 N2 U* V4 f/ ]9 _) Q
  26. ROOTPATH="$HOME"8 `1 D# K) H2 E. ]9 [  t; o
  27. SRCPATH="$HOME/mangos/src"
    * f6 F. p) y1 k2 p( O4 s& _4 z
  28. INSTPATH="$HOME/mangos"* c) t, A, b5 }1 c7 [
  29. DB_PREFIX="two"
    ) Y* c+ l$ T2 A$ z. e
  30. USER="mangos"; w% F9 D  ?/ x3 J/ \8 a$ ~2 {
  31. P_SOAP="0"5 J- u* t1 `4 k3 Q: F  p
  32. P_DEBUG="0"# y8 u) `$ x7 ^) k( Y- n! S5 r$ ?
  33. P_STD_MALLOC="1"& j$ Z' H& |/ d% e9 [. p  H, c
  34. P_ACE_EXTERNAL="1"; M. C2 L+ Z2 D  A0 \: J1 G, p
  35. P_PGRESQL="0"
      O- p+ o. v7 \7 I( u) \% n
  36. P_TOOLS="0"
    ! B$ b% u) a. l* C" C& r3 Y
  37. P_SD3="1", @( L6 g+ |3 [- h- E4 q; j
  38. P_ELUNA="1"5 q7 H5 e6 D/ M) H8 k+ H+ @
  39. P_BOTS="0"
    & c* i2 ?, B8 B( K4 ?8 E" s
  40. CMAKE_CMD="cmake"! e- H' Y0 j  w9 C7 U

  41. / a* u" x; a) s
  42. - t' c6 s  V) A; A! `7 S( D
  43. function UseCmake3()
    2 |3 m1 [! F! c/ m1 F- M& T- Z: O
  44. {. E2 ?7 d9 L( r  ]2 u
  45.     # set the command to cmake3 if its there! F/ @  c! E/ [2 u; F5 K0 ^
  46.     which cmake38 u* ^. K! D0 T% r, ^# \' m* x
  47.     if [ $? -eq 0 ]; then9 x' m" P$ x8 N  V0 H% A
  48.         CMAKE_CMD="cmake3"- {6 y. p! s8 b/ W5 I
  49.     fi1 o$ @8 Z! Y0 \+ l. A  [0 Z
  50. }
    0 ~  H# A2 Y6 S2 C* {+ f
  51. ' E4 W+ s& \. F0 \
  52. # Function to test for dialog
    : Z9 A% w3 z4 f; w
  53. function UseDialog()8 p$ t) {8 M: W1 ?
  54. {$ v. D  Y, m) F9 r3 r" i$ w
  55.   # Search for dialog! k! W4 l$ r. o: r5 ~
  56.   which dialog* d% ~1 X$ I" b1 @4 n3 I

  57. * R$ R" Q, _# @; ?' \+ `3 u/ I
  58.   # See if dialog was found- G2 s( T# x) P
  59.   if [ $? -eq 0 ]; then
    5 }) r2 p" J7 ?0 ?. s8 [% {$ z( T
  60.     DLGAPP="dialog"
    : P& i2 ~( i9 M8 P/ O
  61.   fi# g/ H( e8 S: K; ~; n( B0 V; \) Z
  62. }# p" s% k, b6 B! z1 y6 E
  63. 2 [" \) T6 a1 T. {; X7 Y9 e; W
  64. # Function to test if the user is root or not
    6 l. a6 G4 R& _2 k+ H
  65. function CheckRoot()
    4 w- A7 G; w; {& i
  66. {
    3 J7 V7 J* c% P5 ~* e+ t; S
  67.   if [ "$(id -u)" != "0" ]; then
    7 B. K/ z1 \' [( N- ~
  68.       Log "This script can only be used as root!" 1, E8 r6 [0 D% u5 q( L% j
  69.       exit 1
    ( V: Q: U* b6 u5 f: J
  70.   else' b& a' _- q0 l
  71.       Log "User is root, check passed" 0
    ( }4 _5 v  V& a6 S( u4 B
  72.   fi
    : ^% L6 ?3 g3 K1 F' K9 O1 p
  73. }1 g1 _7 m& T9 P" c8 t) ?& `
  74. ( b3 L) O2 l. T
  75. # Function to detect the repos2 S% M. f0 R; W
  76. function DetectLocalRepo(): C: f+ r3 [. b  z" t: m$ X
  77. {& X2 s1 R  U2 t# S  r
  78.   local CUR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    2 j5 a" [" x/ W1 l1 p

  79. 1 o1 N! {8 v# F1 ~2 A$ q
  80.   # First see if the Windows stuff is in place
    / h( s9 K5 m9 |" n$ {
  81.   if [ ! -d ../win ]; then8 `- J0 z0 T+ }: N- W# V
  82.     Log "Windows files directory does not exist, assuming repo has not been cloned." 0
    & T# M$ e: Y( x4 J, w
  83.     return 06 k1 f5 u$ [. O1 {) R# ~
  84.   fi
    & p! H& k+ h. a$ A3 Z
  85. 0 }. i8 p, L& S3 I& Y/ d* B' t) a
  86.   # See if the sources dircetory exists' _7 u6 D. j* p' a3 V
  87.   if [ ! -d ../src ]; then0 i* y. V1 j1 w5 v& L
  88.     Log "Source files directory does not exist, assuming repo has not been cloned." 0
    7 |' \1 c/ c/ ?7 J6 M4 S+ \* R8 f
  89.     return 05 X* @5 p& W% ?0 H) l' T7 O( F9 Y
  90.   fi/ k0 q& d9 |" F3 m; e& \
  91. * `4 [8 j7 Q8 ~  Y2 f" v
  92.   # Check for the CMake directory: t5 y& [+ a6 ^, j! a
  93.   if [ ! -d ../cmake ]; then! ^. [$ ~7 q! g4 J- Y
  94.     Log "CMake directory does not exist, assuming repo has not been cloned." 0
    1 }+ x$ Z4 T+ g1 o7 J3 A& w: [: P3 y
  95.     return 0# Z( x7 H6 R1 U* k2 l0 O
  96.   fi5 f5 u+ f  G8 ?2 a

  97. - S4 D6 F1 Z+ E- ~' j% U7 R
  98.   # Set the default paths based on the current location& F$ Y: H6 m- q5 i
  99.   SRCPATH=$( dirname $CUR_DIR )- O9 k4 ]1 G$ Y# f1 K  j5 o
  100.   SRCPATH=$( dirname $SRCPATH )" ^) E7 P6 q4 {& `4 d
  101. 6 D$ S2 c* \! {# G9 N
  102.   # Log the detected path
    ; F/ y& D# T5 f4 K* c: h
  103.   Log "Detected cloned repository in $SRCPATH" 0$ z0 A8 K$ v( l
  104. }
    . _/ d3 Y0 J/ T
  105. 1 K* o* u& w) M. m9 W) m
  106. " Y" r# ?! r" i9 D- `% I4 i

  107. % I+ x6 Q7 Z' k  n' h) {$ A
  108. # Function to log results
    + v' Q% R& |( ~5 n
  109. function Log()
    ) }8 H/ h& ^8 R# {. u7 q5 C. ]( k
  110. {5 E' F/ n0 u" F2 j0 `$ a
  111.   local TIMESTAMP=$( date +%Y-%m-%d:%H:%M:%S )
    " V' L& M  q9 l) E9 n( _. f
  112. / o5 p& H3 o1 a5 T
  113.   # Check the number of parameters
    5 E* q# T* g. u5 ?/ h$ W# V. D
  114.   if [ $# -ne 2 ]; then1 E/ T9 S" S" z# O, J" q6 n
  115.     echo "Logging usage: Log <message> <echo flag>"
    , N2 E1 i, ^' e. q
  116.     return 18 h8 r3 Z; y9 U. ~
  117.   fi
    + R# Z' B3 J4 a7 r/ q

  118. / I# C/ J4 a0 l% d; I4 y( K" g, y
  119.   # Echo to the console if requested8 v8 Z% @: @% w* [6 B7 A/ z% b9 v: }" x
  120.   if [ $2 -eq 1 ]; then
    8 D: \1 w/ u+ m, b4 V0 Y. k
  121.     echo "$1"
    6 P4 l/ J3 c1 j  ]
  122.   fi
    ! L- g4 T  E2 ~1 B
  123. % l) `* o  v. B4 B  j' J- Y0 L
  124.   # Append the string to the log/ Y1 R  k# _) a# f
  125.   echo "$TIMESTAMP $1" >> ~/getmangos.log
    8 N* |( ]- ?) p: `) g3 C
  126. }: J9 [$ i0 Z/ z  z" |6 I
  127. 7 F; u' H" ^7 B. R

  128. : O+ U1 l' i2 h# \1 I6 n

  129. 5 @7 S- D8 c: |) T; M, |: `
  130. # Function to install prerequisite libraries6 U. ~9 A% i6 {, |5 x% \6 i
  131. function GetPrerequisites()5 C2 Q' P5 D% A) N. ^' B+ c7 l" d
  132. {6 \) D% |  B# P- ~+ _* E2 x( m5 M( t
  133.   # First, we need to check the installer./ h9 Q; o3 t0 j+ B+ d: F
  134.   installer=0  d9 _  K- |1 N

  135. - s, H! n' ~+ t1 `" I& G4 s
  136.   which apt-get
    + O+ e, b# @* Y6 m" ~  C: o5 T

  137. 8 o% i' ~  K, P1 P6 T
  138.   if [ $? -ne 0 ]; then+ c2 ~4 Y3 o( {! r; ]9 {( t
  139.     Log "apt-get isn't the installer by default" 1& f9 j; m* N1 b5 U
  140.   else
    0 D+ C" d% b# k5 T$ F
  141.     installer=1
    ; E# H& X+ B0 L7 s$ Q9 z
  142.   # On a fresh OS boot (EC2) libace was not found without first updating
    - X. P5 `+ Q! X: U
  143.     apt-get update -y && apt-get -y install git lsb-release curl
    % i/ x( K; c# g* [: B
  144.   fi8 R6 b! W( o! O* c/ S

  145. / N2 e1 a3 Z" K2 x. Y4 G: K
  146.   which yum
    ! ?7 H4 w' H% {0 x% G$ K
  147. / }1 X1 c& Y& s. P
  148.   if [ $? -ne 0 ]; then
    * ~6 k) ?1 h* R) S
  149.     Log "yum isn't the installer by default" 1- T' q7 c! Z+ X' I& I5 Z1 y( v, k
  150.   else
    # W. E2 U* a4 [- w2 U
  151.     installer=12 a4 q! F/ G( \' r
  152.     yum -y install git redhat-lsb curl' N" i( k0 L- Y; E
  153.   fi* A3 N! D3 p" p$ c
  154. 4 }5 T0 Z% I4 m( M% t  Z
  155.   which aptitude
    - ^4 s: ?! M6 L2 d
  156.   if [ $? -ne 0 ]; then2 {5 R: u' T) {+ `
  157.     Log "aptitude isn't the installer by default" 1$ N! s% @; i7 \4 x+ }
  158.   else! ]1 J. R: @; x$ t( X2 y% k) f) c
  159.     installer=1# V) ]' x" ]8 p% g7 [/ |
  160.     aptitude -y install git lsb-release curl5 g1 _$ {. y% e& `2 o% ?
  161.   fi
    0 A2 q+ `8 D9 c) \

  162. ) X" x8 a' m0 |  ?- r% I
  163.   # Then, let's check that we have the necessary tools to define the OS version.0 n) h3 o4 Q  V) k- S  z, y. I
  164.   which lsb_release# ~( ~! G1 C5 x/ V% n

  165. $ M; u+ X5 Q7 H
  166.   if [ $? -ne 0 ]; then/ _! e% ^* ^  k* j1 X; K0 \
  167.     Log "Cannot define your OS distribution and version." 1
    9 A+ {3 r2 }* G& ?8 t
  168.     return 0
    6 Z* ~$ M0 G2 `9 i( t
  169.   fi
    ' v& U' m& Y8 `
  170. % x, d% D7 ~+ ~6 [3 `, a% A
  171.   local OS=$(lsb_release -si): c" A6 T/ Q" \5 l
  172.   local VER=$(lsb_release -sc)
    * l1 x5 a7 \3 d1 o& t
  173.   local OS_VER=1
    . k/ S( @8 ~: h$ z2 C1 c5 t: _
  174. 5 Z/ W, {; n# L7 M; |/ u5 K- y5 t
  175.   # Ask the user to continue
    " L8 C$ i4 ^  M% S( A. A1 C& X! J
  176.   $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Install Required Dependencies" \+ T0 L- S+ b5 v7 f3 Y
  177.     --yesno "Would you like to install the required build and development packages?" 8 60
    6 o' M- l) B: L, T6 O# g

  178. , _" t+ v, M9 X$ }) `6 S
  179.   # Check the user's response
    & L. X% x4 I0 S2 `3 g* |7 _
  180.   if [ $? -ne 0 ]; then
    $ u2 O; o+ d1 I2 |9 O* S/ s
  181.     Log "User declined to install required tools and development libraries." 1
    - q) D8 t4 Y3 ?' y
  182.     return 0/ o3 m* b  `- l
  183.   fi
    3 B0 v5 J9 s* `: m+ k0 t

  184. 1 Q( A9 L; [( Y  U+ C( x" Y- d
  185.   # Inform the user of the need for root access
    # X" Z  Q. d1 D- k
  186.   $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Install Required Dependencies" \0 [3 v' g: d$ p  R
  187.     --yesno "Installing packages requires root access, which you will be prompted for.\nDo you want to proceed?" 8 60
    # x, h' R2 H+ F9 R# n' U3 t

  188. 9 L9 X# Y- ^- R! L5 [
  189.   # Check the user's response, g4 k3 `) S. ?/ c) t! v
  190.   if [ $? -ne 0 ]; then
    9 q9 C% A0 ^6 o: B2 L2 b9 [
  191.     Log "User declined to proved root access for package installation." 1
    $ B6 j3 W3 b3 \3 x
  192.     return 0
    $ m6 C$ N! h2 Z+ a' [! [, q$ G
  193.   fi
    % B- c" ?' Z6 k3 e4 l' [

  194. & m8 \; h2 w$ c7 j7 ^! k" `
  195.   # Handle OS
      ~9 h+ |% j8 X" i- k3 X
  196.   case ${OS} in0 V% H4 K8 _/ Y& S
  197.     "LinuxMint")4 m% Y5 s2 `1 Z" O; ?/ G
  198.       case ${VER} in/ |$ b. S& I" k0 l$ f' J7 l
  199.         "sarah")
    . B$ e8 t8 D! y' A
  200.           # Linux Mint 18 - Ubuntu Xenial based7 Z, G: Y/ R4 u6 [7 @: K5 E$ N
  201.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root0 S, [( C+ r8 T( z# M$ E7 S4 y+ @
  202.           ;;
    9 I0 q# w) f# E; U* i% c) S; |
  203.         "rosa")
    ! z: j$ _6 L. ^. P) L
  204.           # Linux Mint 17.3 - Ubuntu Trusty based$ v8 c( G! _2 n/ T3 W
  205.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root
    . w2 V% H& o, O
  206.           ;;
    ( \; x% P$ Y0 Y9 y3 _
  207.         "rafaela")6 h) C4 g/ s; f! F4 l: |2 r2 L
  208.           # Linux Mint 17.2 - Ubuntu Trusty based
    ( N2 N! g& F' x9 k, S
  209.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root4 W  V# z& f" t# E. J. `9 d5 q7 X
  210.           ;;- _7 f0 Y1 f0 g* q
  211.         "rebecca")
    0 y0 o9 ?5 e& F. b, E& F. X
  212.           # Linux Mint 17.1 - Ubuntu Trusty based6 p0 ]; p2 r: E5 H" Z. x: I# ~3 f
  213.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root
    * D* `! L) P+ e( ?$ A+ ?9 t
  214.           ;;
    ( H: ^) E+ V, i$ E
  215.         "qiana")6 ?4 S; p% ?$ ?# d8 _) a. p: N3 V3 }
  216.           # Linux Mint 17 - Ubuntu Trusty based
    5 H+ v  D& ]* N! T
  217.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root7 b; B" j% W, @, M, e! ?  |$ {
  218.           ;;
    ; l3 G/ f# {1 Y6 f" U4 t
  219.         "maya")3 d$ u# s1 A4 B5 i& r5 w
  220.           # Linux Mint 13 - Ubuntu Precise based
    ! k4 c0 C' Z" S
  221.           su -c "aptitude -y install build-essential cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev" root1 a$ W$ a4 f" k' h
  222.           ;;7 e! |0 b: g# H+ L1 D
  223.         "betsy")' ~$ F3 B. R; K7 `1 b
  224.           # LMDE 2 - Debian Jessie based
    - m" x3 E) G6 g
  225.           su -c "aptitude -y install build-essential linux-headers-$(uname -r) autoconf automake cmake libbz2-dev libace-dev libace-6.2.8 libssl-dev libmysqlclient-dev libtool zliblg-dev" root6 i3 v. |; u; W2 F, q5 c; l* I: o
  226.           ;;3 h9 l- V: _! r
  227.         *)
    ! y- @$ G: h; n! J# L( ~$ f* R
  228.           OS_VER=0: A  P1 d, Y; g1 V9 a* z
  229.           ;;8 Q& k- _) ^+ [2 Q  G
  230.       esac
    4 C" ~+ C+ i( F1 v
  231.       ;;
    + H$ y$ F2 f' ?$ ?. v
  232.     "Ubuntu")
    3 n' ~9 ?1 E" w+ C
  233.       case ${VER} in& a) R( a& l* t4 z: X$ E
  234.         "precise")1 q' R; T1 N9 _& U3 Q
  235.           # Ubuntu 12.04 LTS: o5 J. A4 E) y0 F4 g
  236.           su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root
    + g0 r0 |! S  o7 j3 n# r. ^
  237.           ;;) L7 M7 F1 a/ l' {7 V5 b
  238.         "trusty")
    : p4 G6 [! d9 C' {/ O' p4 F, Y/ c. r0 J
  239.           # Ubuntu 14.04 LTS& ~4 V, m: G( Q
  240.           su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root+ k5 D9 X7 n5 Q
  241.           ;;  C0 M* _/ a4 v$ X# p. z6 U
  242.         "xenial")
    ! Y7 T7 G6 c: U8 s% r2 m1 \( I4 M
  243.           # Ubuntu 16.04 LTS
    6 d' l2 D8 k' v5 Z" j" X
  244.           su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root' L: y' N  F" ?$ i3 }, j
  245.           ;;
    8 z5 t/ N/ ?  A" K
  246.         "yakkety"): Z% F3 h3 d' H& P  j5 m4 k
  247.           # Ubuntu 16.10
    4 s; X: K9 m! s' I# u
  248.           su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root; E# B! `# A" u# b& S
  249.           ;;
    : s1 w9 M6 C+ X+ n* R. K' m
  250.     "zesty")
    0 A) r0 J: [7 @! D, Z( u, t9 C
  251.       # Ubuntu 17.046 R/ ~# ]& A. |/ Z8 {
  252.       su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root+ n. S$ |  q  f0 m& _7 B
  253.       ;;  f  R; P4 ?: p/ a* z
  254.     "artful")& A0 \* [" \& K
  255.       # Ubuntu 17.10# U( Z) x7 [: D6 A% A* C  y
  256.       su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root8 a& z  \! o2 d: p% M( S8 R0 _
  257.       ;;& l: ]; _; h& h( c* z& X: S
  258.     "bionic")
    7 O  v8 `, J: o: t, J; |
  259.       # Ubuntu 18.04 LTS) x8 O. i8 a1 F
  260.       su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root
    $ ]. M, Q2 r; A% D6 W/ r
  261.       ;;& G. n# D; y0 D" ^
  262.     "disco")
    $ i& N- W- ~4 h* |
  263.       # Ubuntu 19.04- W  l% Y" v5 k, P2 Z
  264.       su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root
    & v/ I% v# }# s  N( b( Q  W) a5 N
  265.       ;;
    2 _/ s; A' K" q/ K
  266.     "focal")
    , X& a3 i2 h2 r& j' m9 w
  267.       # Ubuntu 20.04/ h; A* g; e6 m1 D
  268.       su -c "apt-get -y install build-essential curl autoconf automake cmake libbz2-dev libace-dev libssl-dev libmysqlclient-dev libtool" root% c5 ~: i4 C8 b. U) A
  269.       ;;$ }, L) r% F, H0 q# I9 U
  270.         *)8 q, _1 o. g& L
  271.           OS_VER=0
    + ~, }1 G$ a8 L. w
  272.           ;;, U# p# L: z' r3 j: j' @
  273.       esac
    * t4 S6 c* K0 a) a6 x0 E) @
  274.       ;;
    & E1 g0 f6 L. x3 \. W' B- z  R
  275.     "Debian")7 Q% K9 Y5 l2 B" V2 l) e( S6 i3 {
  276.       case ${VER} in
    3 H1 K+ p# z1 G+ f0 w; L- p: G
  277.         "jessie")& _' E7 J& b+ V, |* q
  278.           # Debian 8.0 "current": r4 V- t  N& h1 r" q8 q( I
  279.           su -c "aptitude -y install curl build-essential autoconf automake cmake libbz2-dev libace-dev libssl-dev default-libmysqlclient-dev libtool" root! D. o& P; c3 X+ S
  280.           ;;! e4 F9 s! O( n4 b: T* E4 C. \8 q! A% F
  281.         "stretch")7 o3 O0 ?( Z7 O1 H( Y, W- n0 I
  282.           # Debian Next
    / y$ v. b4 j3 M. n$ B3 F1 `
  283.           su -c "aptitude -y install curl build-essential autoconf automake cmake libbz2-dev libace-dev libssl-dev default-libmysqlclient-dev libtool" root2 Q4 y# g7 y- c8 I
  284.           ;;
    4 d6 c: W2 w* }! p" X' H
  285.         *)! K" L% \1 r3 `6 G6 V
  286.           OS_VER=0
    : A2 L% V5 a: s: o& h
  287.           ;;) k+ R2 s, t; x' }, m. _# Q
  288.       esac
    % h! q8 Z" U; F+ V$ R$ A! i
  289.       ;;1 x+ }, b7 ~$ ~0 W1 _5 `/ Q
  290.     "RedHatEntrepriseServer")
    5 i5 \  V; X) b% r# q
  291.       case ${VER} in
      f5 G* c' Y, W' |! d( @
  292.         "santiago")( w/ o. K* k: b. U0 Y1 `2 s% C- `4 u
  293.           # Red Hat 6.x2 L% ~5 J* C+ E" F4 Q& {) r* C
  294.           su -c "yum -y install curl build-essential linux-headers-$(uname -r) autoconf automake cmake libbz2-dev libace-dev ace-6.3.3 libssl-dev libmysqlclient-dev libtool zliblg-dev" root
      O, j  N: d  H8 t- g
  295.           ;;# w6 ]5 p# `* v: {
  296.         "maipo")
    % ]* i9 E" ~) ]$ N4 k  }+ @2 j
  297.           # Red Hat 7.x
    5 M( p6 i4 Q5 i, F! V
  298.           su -c "yum -y install curl build-essential linux-headers-$(uname -r) autoconf automake cmake libbz2-dev libace-dev ace-6.3.3 libssl-dev libmysqlclient-dev libtool zliblg-dev" root8 Q* l9 n# ~/ \# P7 M
  299.           ;;4 k  ?' [3 m0 d7 d
  300.         *)
    2 U$ z! d: K6 [9 q) a: M
  301.           OS_VER=0
    / F/ h$ o( f% ?6 z
  302.           ;;
    0 b" Y4 X4 _2 N' ]8 b
  303.       esac
    + {: _# w0 Y# K
  304.       ;;& {$ X8 X0 F& Z" _" E6 [, [; V
  305.     "CentOS")* l( \6 }; l5 X
  306.       case ${VER} in
    5 C0 r3 s6 I- B8 ]- Z  V9 O
  307.         "Core")
    : B+ E+ Q; t: r5 |  U" K$ T
  308.           # Default CentOS - Adding necessary RPM third-party.$ ?% F& ]: n5 V6 d
  309.           rpm -Uv ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/devel:/libraries:/ACE:/micro/CentOS_7/x86_64/ace-6.3.3-55.1.x86_64.rpm' Q6 @( T# h0 w- E- |
  310.           rpm -Uv ftp://rpmfind.net/linux/centos/7/os/x86_64/Packages/perl-Net-Telnet-3.03-19.el7.noarch.rpm6 R: ]/ q; ~/ _
  311.           rpm -Uv ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/devel:/libraries:/ACE:/micro:/versioned/CentOS_7/x86_64/mpc-6.3.3-42.1.x86_64.rpm# Q% O- L. X- |
  312.           rpm -Uv ftp://rpmfind.net/linux/centos/7/os/x86_64/Packages/libtool-2.4.2-22.el7_3.x86_64.rpm7 y9 D, Y( Z9 O9 `
  313.           rpm -Uv ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/devel:/libraries:/ACE:/micro/CentOS_7/x86_64/ace-devel-6.3.3-55.1.x86_64.rpm& s0 {3 G- p# L& X
  314.           su -c "yum -y install epel-release"
      q$ S( {" J+ \! H0 w
  315.           su -c "yum -y install curl autoconf automake cmake3 ace-devel ace-6.3.3 openssl-devel mysql-devel libtool gcc-c++ bzip2-devel" root+ t6 K$ F* U1 ~; W
  316.           ;;
    7 M8 ^# a- r- r
  317.         *)( N! F( V0 v1 T+ w7 M" G9 @
  318.           OS_VER=0
      k% Z8 Y$ L( ?! d. k
  319.           ;;
    - O4 L, {% M! |8 ^- o
  320.       esac
    - u( Q* U/ E9 Z
  321.       ;;
    $ Y# g  P) b, E8 y
  322.     "Fedora")
    2 C* F; H0 n5 y8 W+ m" ^
  323.       case ${VER} in2 `$ }/ M! Q; S! @
  324.         "TwentyFive")( I7 f& I0 X1 k; c& [: \
  325.           # Fedora 25 - Adding necessary RPM third-party.
    / R( C+ F9 r9 ^! g! a
  326.           su -c "yum -y install autoconf automake libtool gcc-c++" root6 X) k3 w3 Y2 o; K6 U9 n
  327.           # Getting and building ACE. Not provided in RPM for Fedora...
    % b! o" R+ b) D) g
  328.           rm -rf ACE-6.3.3.tar.bz2
    : _: W+ i; h. N( b" q& I( \
  329.           rm -rf ACE_wrappers
    ! q' Z2 c% M* U- ]' `. v! t
  330.           wget ftp://download.dre.vanderbilt.edu/previous_versions/ACE-6.3.3.tar.bz2& k3 z8 |, f: _# ?+ b
  331.           tar xjvf ACE-6.3.3.tar.bz2& f6 _4 I6 T9 e, n/ t- Q, l
  332.           export ACE_ROOT=/root/ACE_wrappers
    4 i) C& r+ H4 F( m- ~
  333.           echo '#include "ace/config-linux.h"' >> $ACE_ROOT/ace/config.h
    8 B/ S, S; _: j" @: O
  334.           echo 'include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU' >> $ACE_ROOT/include/makeinclude/platform_macros.GNU: S3 ^" H2 e+ ]% S
  335.           echo 'INSTALL_PREFIX=/usr/local' >> $ACE_ROOT/include/makeinclude/platform_macros.GNU0 K: H4 K' C2 r$ i, L! z* c" h
  336.           export LD_LIBRARY_PATH=$ACE_ROOT/lib:$LD_LIBRARY_PATH- b9 o" Q: T2 _6 c* X
  337.           CD $ACE_ROOT1 _0 G4 q' L/ E! m
  338.           make
    * {7 _  n9 |9 ~6 p! x
  339.           make install
    $ h) n" ?7 M* @3 M1 d
  340.           cd ~2 O3 ?3 H; K- G9 n
  341.           # Installing remaining dependencies..
    ( V/ k5 h: M: i+ W# I$ d( h* [
  342.           su -c "yum -y install cmake openssl-devel mariadb-devel" root
    ; _. Z% J- Z4 s/ d
  343.           ;;& k" T+ Z. f  i/ t1 }2 ]
  344.         *)+ G# b! K- @' g8 i% s6 t4 u3 Y0 l
  345.           OS_VER=0
    & `: m* {, q  ]) I5 A) [9 E8 q
  346.           ;;
    1 A; d5 @1 u8 o) K7 @9 F' N4 h
  347.       esac
    2 f/ C  V" c. Z
  348.       ;;2 }/ d2 c/ t& v+ Z9 h5 t
  349.     *)
    # i0 W; l/ p$ d! |8 h  X
  350.       OS_VER=0
    & D8 G$ q4 g. ]7 r
  351.       ;;& h# T' @) K0 q1 P0 l+ G
  352.   esac
    0 T6 r! U, e# a2 W& f7 |
  353. . Z5 |* F  ?' Z  F
  354.   # See if a supported OS was detected
    * e8 j) w) y  F9 F3 H, K
  355.   if [ ${OS_VER} -ne 0 ]; then0 ~2 n6 M$ T/ ^$ m1 r
  356.     # Log success
    . h3 I* ?- s; ]+ F# _
  357.     Log "The development tools and libraries have been installed!" 17 _% w& L& b. v# v4 A
  358.   else
    - G3 q9 k5 h# l# ]5 j
  359.     # Note the error- B3 W" m, A( @, ?! k
  360.     Log "Could not identify the current OS. Nothing was installed." 1
    . H; `* u1 g9 k& T7 n
  361.   fi/ P* }0 a4 D, D; g4 ~
  362. }
    ) f9 J. S( B3 g$ F0 q' J

  363.   n5 \3 [) q* Z* f% [2 r; I0 S+ x. z
  364. ' x0 n) X. A+ Y

  365. 7 p( y2 D, U, N: S; |
  366. # Function to get the WoW version& m9 I$ W7 W5 K) T, z$ Z
  367. function GetRelease()
    " Q% q) Z; L8 I4 R
  368. {
    6 @+ k* h: E+ B
  369.   VERSION=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Choose WoW Release" \
    8 l- h& l4 _; d# \- O
  370.     --menu "Select a version of WoW" 0 0 5 \4 ?$ d4 G" c2 h/ d
  371.     0 "Original Release (Vanilla)" \) [2 h' k1 a: P5 V$ @% i
  372.     1 "The Burning Crusade" \
    ; I/ n+ O6 {- M3 P- y
  373.     2 "Wrath of The Lich King" \
    2 m$ a  ?, o% {6 L6 D
  374.     3 "Cataclysm" \
    & G- ?9 e8 J$ ~" x7 V
  375.     4 "Mists of Pandaria" \0 \5 I* S$ [7 y( K: u) k" U" [
  376.     5 "Warlords of Draenor" \4 A% `6 }- v. R9 T8 v7 B
  377.     3>&2 2>&1 1>&3)8 }* n% _) K8 J% o8 P$ Y' {

  378. 6 N8 _" C0 h+ G1 W1 d+ `' {
  379.   # Exit if cancelled
    3 F% G4 ~0 ^$ c5 @, M8 t7 J* c
  380.   if [ $? -ne 0 ]; then, ^# ]+ O! H0 Q" e& C" V7 J
  381.     Log "Version selection cancelled by user. No changes have been made to your system." 1
    6 j" P7 c! g: s! {# l0 Q6 }
  382.     exit 0- ^# D; e' \8 G9 Z+ a
  383.   fi
    ' k2 L" s) S) C, B5 m
  384. ( y1 o. D" W" K' h6 e6 _9 m  s) _
  385.   # Set some defaults based on the release
    ( e- F- w  o' u  H
  386.   case "$VERSION" in1 }1 b2 c) H* |8 P* v& }  j  _
  387.     0)( Y8 C+ p6 ~* N# T  z! U0 q( ]
  388.       SRCPATH="$ROOTPATH/zero/src"1 h4 e6 h6 L# ?' w
  389.       INSTPATH="$ROOTPATH/zero"
    1 n8 s- D3 H$ w2 f0 [, |1 V' d
  390.       DB_PREFIX="zero"+ B  S# I% ^  B7 w3 B) i
  391.       ;;
    ; o- a5 G. s9 N2 w4 K

  392. 0 n( a! |/ V8 Y4 V) U- j/ E. a
  393.     1)
    * ^# n& o1 u' T6 U/ \1 n! N7 e' j
  394.       SRCPATH="$ROOTPATH/one/src"
    / k4 x( U+ @% H' k: A, f
  395.       INSTPATH="$ROOTPATH/one"
    : I! x/ X$ k+ q/ o
  396.       DB_PREFIX="one"
    : C$ W2 D( E+ e- T
  397.       ;;
    0 n% v* s: K1 W! M
  398. 9 u) l  n9 z' `& r; ?8 l' k
  399.     2)
    ! g& ], X0 m4 M* p: \5 ]- F
  400.       SRCPATH="$ROOTPATH/two/src"3 m0 f0 r+ ]" a  A1 F& f1 v; g
  401.       INSTPATH="$ROOTPATH/two"
    ( o1 P- c$ b9 R
  402.       DB_PREFIX="two"
    ; k9 X* Q5 n9 T4 _" n
  403.       ;;" O" B( C; L. J: j$ X! ^

  404. / v. K5 s( ?; f0 w/ M" j- r2 P& U- q
  405.     3)0 Q1 V# V# b: w! }. S2 [
  406.       SRCPATH="$ROOTPATH/three/src"
    1 D0 b5 S" U5 m4 |& `
  407.       INSTPATH="$ROOTPATH/three"( P$ l  ]) n& g6 e: u: ~' j  L' ~
  408.       DB_PREFIX="three"
    & @$ x' u4 A5 x1 g
  409.       ;;
    ) n( B& A$ E9 e) o) X

  410. * H: B" C7 f' p. G4 l
  411.     4)
    5 n: n7 n& K8 b( M% u/ A
  412.       SRCPATH="$ROOTPATH/four/src"9 d2 [, p5 F0 V, z
  413.       INSTPATH="$ROOTPATH/four"
    0 Y; t6 x+ U* ]0 p
  414.       DB_PREFIX="four"
    2 ^) k+ e0 B. m4 i/ F7 P
  415.       ;;  E; M7 K3 [: I. p8 A- J
  416.     5); ?+ w' d$ k& l+ q; j1 P' I  b% L
  417.       SRCPATH="$ROOTPATH/five/src"" D( ~, w5 W$ t+ U
  418.       INSTPATH="$ROOTPATH/five"
    " h- x3 X) E, [0 u2 s1 \/ O
  419.       DB_PREFIX="five"( G+ m; I; [- _: s" F. x
  420.       ;;
      W! o7 w9 t' E  n. N5 A$ \
  421.     *)+ }% \# N- d* m* K, O* @
  422.       Log "Error: Unknown version selected!" 1
    # a: O3 c" N/ Q! G+ T0 r
  423.       exit 1/ ^2 U/ h% I5 e5 K5 k: p* k+ a
  424.       ;;
    3 J5 K, k4 V% Y2 e; j
  425.   esac
    4 R! j/ W, R  ?9 j" ?5 {

  426. ' l3 U% F+ O# r- l0 ]0 N
  427.   # Now set the correct source path if the repo has been cloned already5 v5 T0 G% w, A
  428.   DetectLocalRepo
    ; {/ g% B0 _7 C  |
  429. }% l! _) [4 c9 G9 B

  430. ( |8 M3 {* L3 e& |* y8 Z$ n5 }
  431. # Function to setup the technical user
    & e9 [2 c* H! W  I: J) x3 V9 a
  432. function GetUser(). x$ B$ ~  \# `, b$ ]
  433. {
    % f7 k4 H2 Z" a4 K& X: ~
  434.   local TMPUSER="$USER"3 t) y+ v& I0 _5 r: ]
  435. / z) y: m/ E1 N: Z! s) G9 A
  436.   # Set the user) r2 f  N) B  I5 M& @, @7 }
  437.   TMPUSER=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "User to run Mangos" \
    1 i# h. g, D6 c# f, i1 U7 G, `  P+ |% y- m
  438.      --inputbox "Default: $USER" 8 60 3>&2 2>&1 1>&3)
    ( X- j2 ?$ o  O4 O

  439. 5 D% w- N! @* H4 E
  440.   # Exit if cancelled
    ' P6 i7 }5 x1 b- M# n+ R
  441.   if [ $? -ne 0 ]; then. ^! x' [5 c% p% a% a
  442.     Log "User selection was cancelled. No changes have been made to your system." 15 X2 T. {( V; Z: s2 Y" U
  443.     exit 0" U7 H5 {; \. ~( C/ D7 N' h
  444.   fi
    + b3 m: S% [- T/ ?" D

  445. 6 w0 ~' L/ P$ t/ a8 E. e1 z2 t
  446.   # Change the user only if it was modified9 ?* o+ N) X/ c6 ]1 x" `
  447.   if [ ! -z "$TMPUSER" ]; then
    : R0 z, C8 a; W9 Q% w0 \0 S
  448.     USER="$TMPUSER"0 e3 q1 S2 t: A& F
  449.   fi* i  ~+ c+ m" H8 l6 I

  450. * z& j1 ]6 S2 [$ z; p
  451.   # Validate user
    , j& _5 q: Y" @* {$ |
  452.   id $USER > /dev/null 2>&1* ]* D% D* C2 Y3 M6 S% d
  453.   if [ $? -ne 0 ]; then3 @* U. D1 S, K0 O! w
  454.     Log "Creating user: $USER" 1
    9 f  ]0 Y: ]% T! w: q
  455.     useradd -m -d /home/$USER $USER > /dev/null 2>&1% d5 ?% H, \4 g) [

  456. 5 O% s- G6 d! f9 z
  457.     if [ $? -ne 0 ]; then
    ! f8 }: C8 B* I& a) ]
  458.       Log "Error: Failed to create the specified user!" 1
    ! y# b' g& Y; m0 }% @% M
  459.       exit 1
    7 A0 k; o- a$ r" F
  460.     fi+ ^0 t: {, h" O( @: T, r1 ?

  461. ; N% ^  I- L( R& v. r
  462.         usermod -L $USER > /dev/null 2>&1
    # y, t" t, j: ?& \" z% B- a
  463.   else! X8 p, V1 p3 }  d7 Y2 f4 M% L- @+ L
  464.     # User already exist, asking to keep the user
    , k4 `/ T+ Z) G0 d  F% W
  465.     $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "User already exist" \5 u+ \5 L5 @$ C& E' ~
  466.       --yesno "Would you like to keep the user "$USER"?" 8 60# ^8 b* Z, r8 J

  467. . M; d/ \- T$ _; M
  468.     if [ $? -ne 0 ]; then; {$ t, q& N; `) R9 M
  469.       Log "Removing user: $USER" 1
    6 o6 y& q* e' h: l0 V# ]% A* E
  470.       userdel -r $USER > /dev/null 2>&1% N8 I$ O4 x4 s$ ^
  471. " c8 }/ G" i  J/ q
  472.       Log "Creating user: $USER" 1; f' g& G4 M$ @! o
  473.       useradd -m -d /home/$USER $USER > /dev/null 2>&1$ V5 P6 f$ y+ q( r: c: G! M; ?0 a

  474. ) m3 H% e, N# F
  475.       if [ $? -ne 0 ]; then
    $ ]# {) O& s+ k/ x- l" o
  476.         Log "Error: Failed to create the specified user!" 1" J3 ~$ I4 t7 ~$ Y7 B* r
  477.         exit 1. n) f6 O! @$ \  a% x3 P
  478.       fi
    ! K0 Y( _5 \, n2 E3 R5 B! P5 q" v) }
  479. 3 ~3 E4 n( u8 g
  480.           usermod -L $USER > /dev/null 2>&10 o7 {# H9 z7 t+ [+ D) L$ T/ R9 i6 N
  481.     fi* ~8 R5 S" f4 `! E" o3 o* V  @% P
  482.   fi
    6 J: r9 ?) k% Y5 g! V5 B
  483. 2 {0 |, ]" B4 W! z
  484.   ROOTPATH="/home/"$USER
    / `/ H. z" z9 l: C) F
  485.   Log "User: $USER" 05 W% n. s" J4 M5 N; Z. b: Z* x
  486. }
    5 G2 [: }( i8 d$ Y. j, e
  487. 7 f2 r% t! h  J5 Q* X) {
  488. # Function to get the source and installation paths
    & A. y+ m# C' b  k0 P- c# w
  489. function GetPaths()
    9 k+ i4 o# }* n
  490. {
    ; `. ]0 a7 g! B) r9 n: g
  491.   local TMPPATH="$HOME"0 a+ ?4 _, j8 d# H; }
  492. 3 x* T; b0 {, _
  493.   # Set the source path8 V  K% m* T  A- Y
  494.   TMPPATH=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Source-Code Path" \& [2 y. L  n3 E2 V2 e9 p1 a
  495.     --inputbox "Default: $SRCPATH" 8 60 3>&2 2>&1 1>&3)8 u0 N3 U: V6 _( P- r

  496. , u/ k4 T9 _4 f; e8 D$ r
  497.   # Exit if cancelled
    # S# Z5 J4 }, ^
  498.   if [ $? -ne 0 ]; then
    8 p2 X& g* l! t' g" k) Y6 m$ B3 N
  499.     Log "Source path selection was cancelled. No changes have been made to your system." 1
    + ]1 V" L7 O' @+ X# O7 n5 }9 B9 V
  500.     exit 0
    1 R! l- I( K% w9 e
  501.   fi, \7 J- s  x  K% Q
  502. - d% f2 j' \# B, N! T  }' {" ^1 }0 V% e% f
  503.   # Change the path only if it was modified/ q& m+ q/ z) }/ l  E7 w' n$ y
  504.   if [ ! -z "$TMPPATH" ]; then" j- P' {  D7 ~4 v* ?, k/ n( s
  505.     SRCPATH="$TMPPATH"! y: J9 p8 R2 {8 i/ A" D' M
  506.   fi
    ( R8 u' T+ k. z
  507. . L: f' \& {- _
  508.   # Validate source path
    2 D4 b+ v* m2 z
  509.   if [ ! -d "$SRCPATH" ]; then( C) J4 y8 i! M9 B" Z8 D6 q4 |0 e
  510.     $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Path does not exist" \
    5 }. T" a* ], l& g
  511.       --yesno "Would you like to create the directory "$SRCPATH"?" 8 60
    ( a: R$ ^; r' K  l9 {: W% t* A

  512. $ W8 ]* ?* c$ ?- t7 h# |; M4 V  |
  513.     if [ $? -eq 0 ]; then
    ( W1 I) F' h2 J6 ]6 n( o
  514.       Log "Creating source path: $SRCPATH" 1
      A: @6 V6 S4 R& d3 v
  515.       mkdir -p "$SRCPATH" > /dev/null 2>&1  [1 u6 w9 M6 m0 L) ~% F  Q2 ~, z

  516. - c# t9 K# }' k. s) F
  517.       # Check to see if the directory was created
    * a. {/ L' u; F; ]
  518.       if [ $? -ne 0 ]; then
    : n9 w) J7 Z+ B, F# }
  519.         Log "Error: Failed to create the specified source-code directory!" 1
    ) y( F* B% Q% S8 E. o+ |4 B
  520.         exit 1. x+ L: z7 n" C/ b, \; b
  521.       fi! z" x- V3 Q% Z9 ?9 X7 N0 ]3 U
  522.     else7 e3 a4 ]9 a6 k' ?0 u
  523.       Log "Source path creation cancelled. No modifications have been made to your system." 15 @2 D7 K% ?- x. z$ j  ^' Y+ w
  524.       exit 06 Z5 X) U6 ?0 v* b/ X! S
  525.     fi5 r$ x) W' e) u/ S1 I
  526.   else' l' N3 s/ [3 e* n% u# p* J' K4 }
  527.     # Check for old sources4 r2 x: D; L4 _% \' B& C
  528.     if [ -d "$SRCPATH/server" ] || [ -d "$SRCPATH/database" ]; then
    9 _% k$ J2 @& P. o( z( d
  529.       # Ask to remove the old sources; q: W+ f& _7 d2 Q* l
  530.       $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Path already exists" \; V9 b( @5 Z9 n7 Y  y
  531.         --yesno "Would you like to remove the old sources? (Answer yes if you are cloning MaNGOS)" 9 60
    $ l  ~% S5 ^/ x" A
  532. $ x' ?( X" @/ N& b7 j4 e# \
  533.       # Remove the old sources if requested$ e) U. d- ^% |8 K: Y' j1 p
  534.       if [ $? -eq 0 ]; then8 S2 b$ B+ h" f+ {7 H
  535.         Log "Removing old sources from: $SRCPATH/*" 1' P6 N* d5 V& N) b1 q0 V
  536.         rm -rf $SRCPATH/** b# u' X+ X) f" J: t/ K
  537. & W: Z8 x* ^' q- l$ h2 F
  538.         # Check for removal failure+ A- _3 C2 H' D, T6 }+ k
  539.         if [ $? -ne 0 ]; then
    0 f+ m# E8 W% k9 @, H  R
  540.           Log "Error: Failed to remove old sources!" 1/ D1 n. R. N+ S
  541.           exit 1
    5 M  }" |$ f. e5 n
  542.         fi" t2 D# L; `" }# I4 _' Q
  543.       fi: n. d$ p# n# P9 ^1 l. g
  544.     fi8 I- z! o- w+ b
  545.   fi7 p. {7 d$ m; K5 I: p
  546. 7 \3 Q, t$ i* Y
  547.   # Set the installation path
    & T6 T) ~0 x" d  e2 t
  548.   TMPPATH=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Installation Path" \* z: g: t: b' P: j, H
  549.     --inputbox "Default: $INSTPATH" 8 60 3>&2 2>&1 1>&3): k$ j) C& A: M2 |7 N% [

  550. - u4 b. z" b, p$ g9 t0 C2 L+ U* w
  551.   # Exit if cancelled
    4 U5 Q4 ?  k3 Q2 ^4 n
  552.   if [ $? -ne 0 ]; then& B& P: e% q, s+ T
  553.     Log "Install path selection cancelled. Only the source path has been created." 1
    : V9 ]; C& B+ ?2 x- g7 `" d
  554.     exit 0/ m; I% L$ J! x" V6 [# T
  555.   fi$ M" y9 Y& W; H+ S5 |
  556. ! X* A$ F2 F" b
  557.   # Change the path only if it was modified
    3 z! Z( i% A. O0 A  b* e: B) @
  558.   if [ ! -z "$TMPPATH" ]; then* P6 b$ G) ?, ]* y, @
  559.     INSTPATH="$TMPPATH"
    2 [- d0 V; C0 l/ o
  560.   fi
      l# }6 B% ]* c2 o0 f; e

  561. ) r1 I6 D3 L+ H( A6 Y, c2 N
  562.   # Validate install path
    ' k+ i  @1 ?+ r) |
  563.   if [ ! -d "$INSTPATH" ]; then0 L: N8 ^0 \* ]: \3 r
  564.     $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Path does not exist" \
    ( I  }2 d- l; _' R4 \
  565.       --yesno "Would you like to create the directory "$INSTPATH"?" 8 60
    1 h' m. c6 e% H) S3 E9 I' h) Y

  566. % C) a' o( ?! T0 {0 S# D# D
  567.     if [ $? -eq 0 ];then
      ?6 N7 d" p2 a6 s9 n& |/ I5 @5 w
  568.       Log "Creating install path: $INSTPATH" 1  [  G# q( N. Z/ Q4 H
  569.       mkdir -p "$INSTPATH" > /dev/null 2>&1
    % z! F6 m0 @& L# h: Y
  570. 8 k, W, L3 K5 j$ ]+ Z
  571.       # Check to see if the directory was created
    9 n$ y/ t" U5 I0 U9 g
  572.       if [ $? -ne 0 ]; then
    0 p" x3 p2 g5 ?, m
  573.         Log "Error: Failed to create the specified installation directory!" 17 F( v5 H6 Q' d0 H
  574.         exit 16 r& K/ i, G0 U6 O! L
  575.       fi
      z2 z" @! P# G. W- B, \9 q
  576.     else) O0 i% T" v& X/ @! i
  577.       Log "Install path creation cancelled. Only the source path has been created."* Y( C! b3 C% J
  578.       exit 0
    2 ?( t" A( L9 F
  579.     fi5 h# C1 f" R* X; g
  580.   else! [0 R; M1 O! I. w
  581.     # Check for an old installation
    ! e) b0 S& f+ v% r
  582.     if [ -d "$INSTPATH/bin" ] || [ -d "$INSTPATH/lib" ] || [ -d "$INSTPATH/include" ]; then5 Q! P4 @, c: w1 e- o. {. J# j" }; R

  583. & s0 ^7 X" |  I5 F: ^
  584.       # Ask to remove the old installation& ^  x7 v3 r4 ?' h1 i
  585.       $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Path already exists" \* g  a* t6 q- T9 O0 d! \. d
  586.         --yesno "Would you like to uninstall the current version of MaNGOS first?" 0 0
    4 {, K1 `2 _- P

  587. " C* T5 Y2 J1 E& o6 G- E0 @: O
  588.       # Check the user's response
    # b% p+ b% ]4 }/ q
  589.       if [ $? -eq 0 ]; then
    * c/ u1 T' M$ w0 P) [: j# ~9 B
  590.         Log "Removing old MaNGOS installation..." 1) B% T' f0 Z1 F' {, T, t& ?
  591. - h; {9 N) s  l- l" p7 `% X
  592.         # Clean up the binaries
    $ y0 Q. s6 s+ N" j( K. u
  593.         if [ -d "$INSTPATH/bin" ]; then
    0 E. ^, y7 l- {) b
  594.           rm -rf $INSTPATH/bin
    3 E2 o: c3 ~6 U* G6 N1 q6 l
  595.         fi1 |0 O6 b7 E6 b, q3 F
  596. ( F( u( R/ x& [3 ~+ \) k9 m$ `
  597.         # Clean up the old includes8 N* c. W: E/ I- T' U
  598.         if [ -d "$INSTPATH/include" ]; then/ x! ]" X( ~+ o7 D$ x. k: ^
  599.           rm -rf $INSTPATH/include
    ; i8 }8 O6 j+ V" U
  600.         fi- f! D, [  I6 `7 `8 |) K
  601. 2 I0 ]. F! j4 ~$ O, R
  602.         # Clean up the library files; G  X, H9 J3 R5 q1 N/ @! Q
  603.         if [ -d "$INSTPATH/lib" ]; then8 ^, S' y+ {- s& |8 }2 D
  604.           rm -rf $INSTPATH/lib
    # }, Y/ |" G) u2 J8 n# q
  605.         fi% Y  {; D, u  T( e; L9 b% m

  606. ! x8 q8 @# ~  p4 M5 i
  607.         # Clean up the old logs
    ) B1 m3 p8 r$ z# A$ |
  608.         if [ -d "$INSTPATH/logs" ]; then
    1 o$ l3 i% b- b( X
  609.           rm -rf $INSTPATH/logs/*9 G/ N. j# |% c5 C7 L
  610.         fi
    0 W7 ^) F" z1 D) Y( f0 z
  611.       fi
    2 B: t6 n5 \# b6 V
  612.     fi" d* n) r0 g% `% ~$ C4 z" n
  613.   fi5 _) ^! C% o+ ^. S* _
  614. / u" ]; T0 ]+ L# O6 C. j0 y* g
  615.   # Log the settings' n$ @1 E4 v( n& k
  616.   Log "Install path: $INSTPATH" 09 }3 ~1 {. V, S" z
  617.   Log "Source path: $SRCPATH" 0
    8 e) }  P+ `6 S2 y5 Y
  618. }  R( d2 {, }+ O% o

  619. 7 _% I& a. w) T1 K' g

  620. , K0 w- Q8 |6 S6 |! a
  621. / @$ C/ M$ ?4 g
  622. # Function to clone or update sources: z/ d" V, f1 j
  623. function GetMangos()
    1 i$ [4 N3 ^" g2 W; R4 p) X9 C. A* Y) x5 X
  624. {
    2 O3 h2 y6 N9 y, Q( \
  625.   local CLONE="0"# T( p$ l( Z/ j  E! t. C
  626.   local BRANCH=""; r  W2 g- M! ]. _; |

  627. . s; a' }7 M5 ~7 I$ x
  628.   CLONE=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Clone or update MaNGOS" \; T0 v8 l/ N# ^  V
  629.     --menu "Would you like to clone, update, or continue?" 0 0 3 \5 S9 _9 j6 j6 n2 Q/ z
  630.     0 "Clone a fresh copy of MaNGOS" \4 c7 p$ S& }; @" y" r8 m  L& \
  631.     1 "Update your existing copy of MaNGOS" \
    , o, ?& |3 X% b. t5 u: t- x3 X
  632.     2 "Use existing copy" \
    , n7 I& u5 \. ^; ]2 j& H
  633.     3>&2 2>&1 1>&3): p- [# G' Y7 v
  634. 3 J% w; V$ S% S2 ]* u
  635.   # Exit if cancelled
    8 }- l% J" F: K6 I0 g4 ^9 t/ f
  636.   if [ $? -ne 0 ]; then
    # Z% {$ i' ~. L. e* Q3 f' o
  637.     Log "Source cloning cancelled. Only the install and source paths have been created." 1. K4 y6 f) j3 o7 P: l" @7 o, E
  638.     exit 0
    " a( s5 ^( O4 G* `3 H" m  X* Z& d
  639.   fi5 w; D9 {; u- i7 L$ o' U
  640. ' a! R" ~/ j5 w1 I  p0 j
  641.   # Clone from scratch if selected
    ! `* U7 ]" G! i. q# j/ k1 P
  642.   if [[ $CLONE = *0* ]]; then! P& b2 R, F) z, t3 O; k. X: D) ]6 n
  643.     # Pull a different branch?- H  s4 m) ]' h- K- x- C2 y
  644.     case "$VERSION" in
    4 Z# ~5 _2 N$ j1 z0 q' n& ^
  645.       0)# R# G- d: `% T; K" l
  646.         releases=$(curl -s 'https://api.github.com/repos/mangoszero/server/branches' | grep "name" | awk 'BEGIN{FS="""}{print $4}' | tr '\n' ' ')
    . i- L- g& r$ M1 l
  647.         ;;' w0 G; e' P( y% Z$ E' u+ E2 n- Z5 l
  648.       1)
    ; k1 i$ {. K; _) y
  649.         releases=$(curl -s 'https://api.github.com/repos/mangosone/server/branches' | grep "name" | awk 'BEGIN{FS="""}{print $4}' | tr '\n' ' ')9 [8 T2 ^( V* c; u  r, j# I! i
  650.         ;;  A/ ^  A8 P0 T( a
  651.       2)
    / @* x, f; x3 ^! U) ^2 ]* h
  652.         releases=$(curl -s 'https://api.github.com/repos/mangostwo/server/branches' | grep "name" | awk 'BEGIN{FS="""}{print $4}' | tr '\n' ' ')
    4 A% b% |7 D0 _: [4 S/ R' Z. h
  653.         ;;
    : D7 }2 s/ Z: ^$ I2 p" U- @& x* G- K3 c
  654.       3)
    * R* z6 ]! q+ A4 \) j" ~( T+ g. n
  655.         releases=$(curl -s 'https://api.github.com/repos/mangosthree/server/branches' | grep "name" | awk 'BEGIN{FS="""}{print $4}' | tr '\n' ' ')# b3 H( n4 d1 N' b; m+ S8 ]8 u
  656.         ;;- }" b+ q. i8 o: u6 W6 |% u( @
  657.       4)* a" b! ^- ^( P9 _( I: g
  658.         releases=$(curl -s 'https://api.github.com/repos/mangosfour/server/branches' | grep "name" | awk 'BEGIN{FS="""}{print $4}' | tr '\n' ' ')  Q* y  T# s2 e# g2 @2 i6 x8 w
  659.         ;;
    0 S& X% O; _' G
  660.       *)# Y6 X2 a1 K; s( u9 K" p
  661.         Log "Error: Unknown version to select branch" 1, `+ y9 r2 x( T6 y
  662.         ;;
    * N- p- Q+ x# ]* B6 Y$ k
  663.     esac
    ( X! [% j; C: f( }% h: n5 X+ C

  664. 9 M+ _7 L) M3 c: i# Q
  665.     COUNTER=1
    7 I: U; |$ T; ~  T( y! x( ]
  666.     RADIOLIST=""  # variable where we will keep the list entries for radiolist dialog
    1 p% O* k/ ], }% T+ R" i- O, I! }
  667.     for i in $releases; do
    ) {; z% j) h+ q1 h( _
  668.       if [ $COUNTER -eq 1 ]; then5 h' U* |3 t. D4 w) n
  669.         RADIOLIST="$RADIOLIST $COUNTER $i on "4 N+ ~/ D3 Y/ d4 z
  670.         BRANCH=$i
    2 I" o& v5 H1 u- Q2 \  C5 f
  671.       else  V% F6 _# D; x& `
  672.         RADIOLIST="$RADIOLIST $COUNTER $i off "2 w% ]6 d* m  u; j- \+ X5 v6 r" y
  673.       fi7 Z6 S( V: X. z, {, M* M3 j3 c3 i
  674.       let COUNTER=COUNTER+1
      g2 c+ S& o! |& @
  675.     done
    / b  v( W' k5 m2 A) d

  676. + F& M# E( g( n; A, B, U
  677.     TMPBRANCH=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Select Branch" \
    3 w) j/ @5 w! o1 I" n1 J" \
  678.       --radiolist "Default: $BRANCH" 0 0 $COUNTER \
    2 N' k; z9 v7 G2 E3 e$ l4 z
  679.       $RADIOLIST \; l( W9 z# p. g4 ]5 y" f' c. c
  680.       3>&2 2>&1 1>&3)6 v1 t% D: v  u  u+ I1 U" o! r8 q

  681. ' V! k7 z) r, a: @4 i
  682.     # Exit if cancelled; g$ ^& J- E; D9 H
  683.     if [ $? -ne 0 ]; then
    3 {! U# b$ q8 j# C( W3 d0 z
  684.       Log "Branch selection cancelled. Only the install and source paths have been created." 1
    " A8 m" r, g, _6 _, r% R, y
  685.       exit 0, |) m3 j; t5 |* K1 v4 i
  686.     fi
    7 a3 f" E; g# P) G
  687. . I; Y+ H' m# C1 x1 e4 s/ O
  688.     BRANCH=$(echo $releases | awk '{print $'$TMPBRANCH'}')( i" p" C3 _" [- Y

  689. . y6 ?2 G- p$ X/ c
  690.     # Set the branch* B7 k4 s3 m* y! z: O2 `0 l7 A' ^; W$ k
  691.     if [ -z "$BRANCH" ]; then0 H' Y# Y2 ]3 b2 O. l* h
  692.       BRANCH="$releases | awk '{print $1}'"
      ~6 R/ a$ z/ `% j; |
  693.     fi+ ^2 A* a6 }3 F
  694. * Q3 l% M$ W7 W& g
  695.     # Clone the selected version* v- D6 u# h2 o, w- g, G0 M. r
  696.     case "$VERSION" in. h  J! `' P' C: p2 A  C2 ~
  697.       0)
    / f. e& r2 D, t+ ^9 s7 a! e  K
  698.         Log "Cloning Zero branch: $BRANCH" 13 H- W# j# ?  J, t1 ]$ |( u) I
  699.         git clone http://github.com/mangoszero/server.git "$SRCPATH/server" -b $BRANCH --recursive
    5 x" I# e  e6 S3 T0 Z
  700.         git clone http://github.com/mangoszero/database.git "$SRCPATH/database" -b $BRANCH --recursive4 N  Q* U+ ~$ ^" [/ X9 B
  701.         ;;
    # z: I1 b( F- `1 t: \- c
  702. 8 z" k, V5 w2 L) _" @
  703.       1)3 D( r3 Z2 m; ]; i, d! z
  704.         Log "Cloning One branch: $BRANCH" 1
    $ \3 w; Q7 K7 S& k) }
  705.         git clone http://github.com/mangosone/server.git "$SRCPATH/server" -b $BRANCH --recursive
    & `# ]; }1 L2 u% E& F# i$ G
  706.         git clone http://github.com/mangosone/database.git "$SRCPATH/database" -b $BRANCH --recursive
    + j' j. }. s( Y9 l; [% r
  707.         ;;# E* k; |4 F8 w6 j- ~8 S

  708. 3 y# Z  @1 ~5 }7 O2 h: v# Y9 n; m# F" A8 h
  709.       2)
    ( L  H) @2 V/ G7 _: {/ t2 X
  710.         Log "Cloning Two branch: $BRANCH" 1
    . B5 H! c" N6 p' m
  711.         git clone http://github.com/mangostwo/server.git "$SRCPATH/server" -b $BRANCH --recursive
    . l+ k, I% S+ R$ q6 }% s: b
  712.         git clone http://github.com/mangostwo/database.git "$SRCPATH/database" -b $BRANCH --recursive
    4 D2 t5 p# {4 v6 A/ Z' P" s
  713.         ;;6 `  d( o4 r6 p6 u# o( v4 Q0 U

  714. , P6 n% T: D: a% a# k! i5 o
  715.       3)
    3 N; Q$ a' T( h" o1 e! E8 N2 p
  716.         Log "Cloning Three branch: $BRANCH" 1
    # s) |: l4 A! K
  717.         git clone http://github.com/mangosthree/server.git "$SRCPATH/server" -b $BRANCH --recursive9 C' m) k) s" G! I; N, T
  718.         git clone http://github.com/mangosthree/database.git "$SRCPATH/database" -b $BRANCH --recursive9 I" r, ~: d# m- z  G# m
  719.         ;;0 V. G! h7 `: f
  720. " o+ _3 q1 G5 B9 I6 O+ z- M' Y
  721.       4)
    " ^( R7 o1 j+ n! Y2 [9 G, |- j# q
  722.         Log "Cloning Four branch: $BRANCH" 1
    9 h* i! y6 d+ Z* ^2 c
  723.         git clone http://github.com/mangosfour/server.git "$SRCPATH/server" -b $BRANCH --recursive
      g6 u- I+ k( ^1 @; n
  724.         git clone http://github.com/mangosfour/database.git "$SRCPATH/database" -b $BRANCH --recursive
    ) m4 o! p7 C7 o; ?- z8 f' S
  725.         ;;& [7 g: |# u3 x6 H" e

  726. 0 ^7 X+ _( S/ s9 X; P5 D' N- }9 p
  727.       *)
    0 J( d( ]' u( z
  728.         Log "Error: Unknown release selected for cloning!" 1$ L% b2 v2 x  h2 J  z( x
  729.         exit 18 a9 D2 v& i( C  H9 _
  730.         ;;
    # r' [% P: C$ ]% o* I6 @7 q& S& R
  731.     esac
    4 q0 _( ?7 X' _) X0 Y0 \5 M

  732. 8 k0 a& Y+ c2 F" o
  733.     # Log success
    $ l* V* B* v1 e3 a4 U
  734.     Log "Cloned the selected repository!" 19 f! Y4 U; Q( h/ p
  735.   fi
    ! ?2 B/ t+ E: X2 m; L

  736. ) n) R* s! c* @
  737.   # Update the local repositories if selected
    5 j7 T' p7 z8 \/ Y! D/ l0 c1 e
  738.   if [[ $CLONE = *1* ]]; then* g: ^7 Y' {  o" g: O
  739.     Log "Updating your local repository..." 1
    2 v0 e0 [$ `+ T8 k$ F( _
  740. + F% d* Z8 d: {! z+ ~
  741.     # Update the core sources
    1 Z, l1 `2 ?. b* f/ ~
  742.     cd "$SRCPATH/server"& H+ L  ^# y, y; s) r3 D
  743.     git pull
    0 R: D* S! q2 i! g% s8 j

  744. " w0 S5 Y& u" e1 {9 j
  745.     # Now update the database sources1 O* N& K! y  X- G* Y* ^
  746.     cd "$SRCPATH/database": Y5 ?$ a0 _9 }# m+ w  C( G
  747.     git pull
    & u, G; U5 q! _7 w5 r

  748. 6 ~5 [) k6 J% d% A' H
  749.     # Log success
    ! B6 W! Z! r5 K
  750.     Log "Updated the local respository!" 19 D) Y9 P2 W; n
  751.   fi
    ; p+ z/ m  L7 t4 D# H, {5 h9 g
  752. 1 c9 T1 w! p- ^) F
  753.   # use existing repository
    9 Z9 m: S3 v0 ^  \/ q/ O, ?
  754.   if [[ $CLONE = *2* ]]; then
    / p6 ]* Z" }. v% _
  755.     Log "Using existing local repository" 1/ h# i, t9 ^  R! m1 r
  756.   fi  S4 J3 d' o! I5 O
  757. }
    4 `8 @2 y- Y& b$ [
  758. . R7 i3 P9 Q( o/ F5 _

  759. . G; W! r; O5 s- }4 P

  760. # w/ D7 v& h6 Y' v3 q
  761. # Function to set the build options
    2 @4 p6 w2 U: A) s" L
  762. function GetBuildOptions()
    7 A8 g: {) [  R& r  g: [; b5 ~9 p
  763. {
    9 H( E8 e7 f- k% W2 c$ ]
  764.   # Select build options* s0 V; [5 B3 y) [
  765.   OPTIONS=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" \: c' O9 O$ a% Q5 \! ~8 I
  766.     --title "Build Options" \
    1 T* C$ V3 A& i2 A7 Z
  767.     --checklist "Please select your build options" 0 56 7 \3 }' V8 W1 V, Y8 U: c2 v  O4 h$ `5 \6 G. u
  768.     1 "Enable Debug" Off \
    , L2 b) M; g8 d" K1 a
  769.     2 "Use Standard Malloc" On \
    ' ^" Y% j$ G* \8 ]: Y0 ?
  770.     3 "Use External ACE Libraries" On \
    ' S0 t( d5 S, W4 Z
  771.     4 "Use PostgreSQL Instead Of MySQL/MariaDB" Off \
    # ?5 m9 x! G- m! W. f! R* |
  772.     5 "Build Client Tools" On \: w8 \; h8 n5 h) i) z- v9 W! p( J
  773.     6 "Use SD3" On \
    9 C+ K. J4 Y, a3 `6 \5 |
  774.     7 "Use Eluna" On \
    - w! W/ j' p+ s5 H# B' j* Y
  775.     8 "Use SOAP" Off \
    % Z, l6 y6 A- f2 \1 B/ H% A8 A  G
  776.     9 "Use Player Bots AI" Off \- y. E/ G# ^! ?: e
  777.     3>&2 2>&1 1>&3)
      w: P7 F8 |3 h. S
  778. , |$ I/ x$ q8 o9 T
  779.   if [ $? -ne 0 ]; then" S) o3 W' F" ^4 I
  780.     Log "Build option selection cancelled. MaNGOS sources have been cloned." 11 k  F# }: h# Y: J3 _1 q  _' r
  781.     return 0
    9 E( z2 @; L7 G3 a% N3 i7 H
  782.   fi
    7 e' |% P' U3 c5 b
  783. % }1 v  l/ Y7 D, N) _
  784.   # See if debug was selected
    3 ]9 K8 y# U% W0 z& [3 k& l
  785.   if [[ $OPTIONS == *1* ]]; then
    " H1 c# e* w: M5 H6 [
  786.     P_DEBUG="1"* t5 y2 f# S( {( M6 g5 x/ \$ h; \
  787.   else# [0 v! |' i5 l. F) y
  788.     P_DEBUG="0") e( c% v, B' Y; c" N' [
  789.   fi
    % H' A$ J( |9 z$ Y

  790. ( |. F+ I* p5 G. U1 F+ M# a
  791.   # See if standard malloc was selected) P0 B* e) i/ t; `4 j
  792.   if [[ $OPTIONS == *2* ]]; then" ~5 ?0 ?5 T+ a- w
  793.     P_STD_MALLOC="1"
    , Y3 R5 _/ }; E7 }7 q& I
  794.   else0 b' w6 x4 ?$ {/ a, V+ Y0 }% g
  795.     P_STD_MALLOC="0"; k7 w- A) i0 C
  796.   fi1 r7 Q# O4 W5 k# j8 g5 e+ c: l9 _, M' R

  797. % t! v# F5 X+ N* h0 g! t2 E9 R9 a5 ]
  798.   # See if external ACE was selected$ D/ ]' i8 c( T$ k
  799.   if [[ $OPTIONS == *3* ]]; then
    ( a1 r- v7 [7 P0 x5 C* c
  800.     P_ACE_EXTERNAL="1"8 X# x9 P/ ~+ ]3 t3 F5 M3 H) M' G: y
  801.   else" M, S% H% i1 u* c8 Y( S
  802.     P_ACE_EXTERNAL="0"1 J5 d' ?* q/ l* D+ ?
  803.   fi" K/ S: \! d) `' Q8 d0 }; }
  804. ! x5 g+ o, r3 @' l7 V7 j
  805.   # See if PostgreSQL was selected: h. _; U1 M  O0 }' \& W6 L
  806.   if [[ $OPTIONS == *4* ]]; then
    0 H/ _8 |: S  a; r3 D
  807.     P_PGRESQL="1"
    - v' P6 Y+ I7 y5 i
  808.   else
    5 S  w% Z6 v* @6 M* d$ A. r
  809.     P_PGRESQL="0"5 y2 C! d% N3 [# r; ~
  810.   fi. v# ~  P9 \" D7 V# G5 q
  811.   I6 ?( I& m+ c$ `! q
  812.   # See if the client tools were selected" q+ D8 l, m- B# s% m7 ]
  813.   if [[ $OPTIONS == *5* ]]; then
    ; a' n, n: M; g/ N' ?% [1 U
  814.     P_TOOLS="1"0 q( b6 U  s: F1 s5 l" D+ ]5 i5 m
  815.   else
    ! w. Y' F- q0 O
  816.     P_TOOLS="0"
    ) m# A6 ]) V9 Y2 p* G+ X
  817.   fi
    " L: o; h+ e. _" v+ p/ W& L
  818. 9 @/ f! r& x' ~0 o5 P
  819.   # See if SD3 will be used
    6 y7 B- c$ H& A3 V& F) h
  820.   if [[ $OPTIONS == *6* ]]; then* F1 S5 X$ `; h* u, Z7 y# C
  821.     P_SD3="1"
    8 I# C$ g. X" Y- m+ |  ~7 \
  822.   else! S* W! o/ [: K: S
  823.     P_SD3="0". I2 B$ Z: d; n+ Q5 }% `+ [5 L, F+ K
  824.   fi
    + x) B4 x3 i6 F% A9 _( N" u

  825. 0 ]" Q- X# }9 k: @5 T+ Y3 P2 n* E
  826.   # See if Eluna will be used
    0 s; D5 s% [& n: x" m
  827.   if [[ $OPTIONS == *7* ]]; then
    5 ^; l1 V  X* e* s& c
  828.     P_ELUNA="1": w. E* ~' E, S9 X9 G: ]6 D
  829.   else
    . L  K! T/ I. i! i
  830.     P_ELUNA="0"8 Y7 A" c' q6 d: i7 q
  831.   fi! i" M% H6 G6 f, d

  832. 0 U; Y( q8 @& v( ^) Y2 M; K: E
  833.   # See if SOAP will be used
    ! a' V% [) D7 e
  834.   if [[ $OPTIONS == *8* ]]; then; n# c! t$ T& h3 D. U) o! V* k( {
  835.     P_SOAP="1". C( |  z: Q9 x( K! m: ~
  836.   else
    2 N( \$ K) k# k8 q5 w7 a
  837.     P_SOAP="0"  P  F+ @3 l1 Z, Q6 J3 C% b
  838.   fi% k6 r+ M* |3 D5 ~
  839. : u" O- R" ^% W" f' t
  840.   if [[ $OPTIONS == *9* ]]; then
    / o$ D2 K: Y1 N" a
  841.     P_BOTS="1"
    + r# u  _% F% l& M" T
  842.   else2 j: w0 w" s( r  ]
  843.     P_BOTS="0"3 W3 b) k( X3 y$ w5 V3 ?+ z
  844.   fi' }# x" h# u2 x! U& w

  845. ) s6 Z0 V7 V1 p9 m
  846.   # Verify that at least one scripting library is enabled
    / f7 F$ q/ j6 S) [, ]+ ]
  847.   if [ $P_SD3 -eq 0 ] && [ $P_ELUNA -eq 0 ]; then' J* v' S4 R4 R: t) ~& b! S
  848.     Log "Error: You must enable either SD3, Eluna, or both to build MaNGOS!" 19 S( d8 [& Z( D
  849.     exit 1- T0 b0 U% V8 }  F5 V7 S3 Y
  850.   fi
    , ~4 S$ @2 @( F0 f6 k' ^
  851. }
    * d! @  q/ T$ j, f) O

  852. $ o7 o$ b( N0 C7 ?' r

  853. * x( ?% x5 c, O
  854. , H; K% c' V3 N3 S/ P
  855. # Function to build MaNGOS$ y3 [! n$ b: P$ P( I6 ]8 g% g
  856. function BuildMaNGOS()- o+ E/ A* f1 z, L% L. {
  857. {5 R, I8 j2 [6 I. k- q/ X& m. B
  858.   # Last chance to cancel building" G) J4 X  ?8 e# z2 J2 h: l  i9 O: ?: [
  859.   $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Proceed to build MaNGOS" \- E( u8 i) Q1 X
  860.     --yesno "Are you sure you want to build MaNGOS?" 8 60+ C9 g& Y; h7 N" {$ T0 o, b- @

  861. + v: \% @" d1 {: @" N! |1 i; ?
  862.   # Check the user's answer0 J, t+ L- b/ }4 r) _! g
  863.   if [ $? -ne 0 ]; then
    7 F4 c$ j. U& x& f0 @6 g+ `
  864.     Log "Cancelled by user. MaNGOS has been cloned but not built." 1* y7 ?8 e: w6 I$ h; i, }* P" y$ L4 s# \
  865.     exit 0
      r6 E" N6 t; o9 r# f
  866.   fi" n; f' J" W5 F  i

  867. " C" h) L$ Y, S
  868.   # See if the build directory exists and clean up if possible
    + c5 S2 ]+ s( R" M5 i$ i( w
  869.   if [ -d "$SRCPATH/server/linux" ]; then- B5 R* P. R- e
  870.     # See if a makefile exists and clean up' `4 J1 k8 D9 S3 ?( x  X
  871.     if [ -f $SRCPATH/server/linux/Makefile ]; then
    5 ]1 O' n, m6 f& a/ X8 w( H. I
  872.       Log "Cleaning the old build..." 1& ]! j' ^) ^0 F4 G" W; z
  873.       cd "$SRCPATH/server/linux"1 K! A, B% c% n+ u
  874.       make clean
    ( M/ N) s9 H1 Y/ n: I9 @5 K
  875.     fi
    ! C1 K! f/ M# z* H9 h0 c# b
  876.   fi% b) N5 p* j: b; i% D, Z) p" }

  877. - J! m3 R: _# b2 p) S
  878.   # Attempt to create the build directory if it doesn't exist
    ) ]0 E) X$ q! r% p8 s! U2 Q7 |, h" k
  879.   if [ ! -d "$SRCPATH/server/linux" ]; then$ E( `( M6 H9 D( C8 E9 N/ S2 Y! Q
  880.     mkdir "$SRCPATH/server/linux"; O; t$ H) X6 ?0 {5 q' O7 N
  881. 7 h  w- S9 Y1 \6 X$ c
  882.     # See if creation was successful6 s+ {! w; ^, M" z3 _$ O
  883.     if [ $? -ne 0 ]; then
    * q  V0 z- F7 E+ @- @4 K
  884.       Log "Error: Failed to create the build directory!" 1; n6 f5 m) J1 Z) b& ]
  885.       exit 1
    9 O5 Y( ]) G  c4 T& e8 s
  886.     fi
    / A) R3 z; I' R  y! [: n- y
  887.   fi
    7 _0 i3 `3 V# V
  888. 4 u6 I7 P, g% {/ F0 H& u6 p
  889.   # Attempt to configure and build MaNGOS
    * M( f9 {: A! a' v% D2 n) S
  890.   Log "Building MaNGOS..." 08 ?6 q9 L' E3 v& J
  891.   cd "$SRCPATH/server/linux"% W6 h8 K: o! t: b1 S
  892.   # make sure we are using the cmake36 ~" j& @: Z1 }; X+ ?& G1 R
  893.   UseCmake3
    . z% Q/ Y  b5 c, H4 Z) V& [
  894.   $CMAKE_CMD .. -DDEBUG=$P_DEBUG -DUSE_STD_MALLOC=$P_STD_MALLOC -DACE_USE_EXTERNAL=$P_ACE_EXTERNAL -DPOSTGRESQL=$P_PGRESQL -DBUILD_TOOLS=$P_TOOLS -DSCRIPT_LIB_ELUNA=$P_ELUNA -DSCRIPT_LIB_SD3=$P_SD3 -DSOAP=$P_SOAP -DPLAYERBOTS=$P_BOTS -DCMAKE_INSTALL_PREFIX="$INSTPATH"
    6 e! G: K4 Q- [% \' {
  895.   make
    ; f+ v8 Z  C5 u7 x

  896. ; z& p* F: E7 _
  897.   # Check for an error
    & p/ ]( H& W% A. P  w0 a: R9 ?) }
  898.   if [ $? -ne 0 ]; then
    / f# p/ U+ f& V* y0 T
  899.     Log "There was an error building MaNGOS!" 1
    8 t+ i9 w3 q/ z  L; a
  900.     exit 1
    / U' @, ^1 m0 `  V' g2 h! f, _& g
  901.   fi
    2 g. A* L; o9 }- e9 U* j) U5 k5 P

  902. $ B; `/ o! |) u
  903.   # Log success9 u: I9 M4 a% T
  904.   Log "MaNGOS has been built!" 0
    $ `$ M* }) i" u# h/ G3 Z2 O6 t
  905. }
    ' [) }0 S% f: u/ B& W  A( v

  906. , Z* b. {) S) g8 S. q% R* @4 L! M
  907. 5 M6 _5 }' J4 V5 v
  908. : h. ?# E5 ]0 z
  909. # Function to install MaNGOS
    1 x& j; N, n; N, K/ C
  910. function InstallMaNGOS()
    - a3 P1 d( x4 Y/ q
  911. {
    2 Z% t) b' d) E, ]( }* X% ]
  912.   # Ask to install now
    4 a/ u3 ^4 I, d
  913.   $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Install MaNGOS" \
    / I) U& k( W" q" {6 p( b
  914.     --yesno "Do you want to install MaNGOS now?" 8 0% Q. S9 E9 L$ G( E  M+ p' a
  915. 3 k$ O" d' t. c6 [! Q: o
  916.   # Return if no3 Q6 C( r0 I+ B4 [8 h
  917.   if [ $? -ne 0 ]; then
    , G) A" i. H) |! C: q
  918.     $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Install MaNGOS" \
      o; s4 z- [2 W0 e
  919.       --msgbox "You may install MaNGOS later by changing to:\n$SRCPATH/server/linux\nAnd running: make install" 24 60
    / J3 Z0 `2 K; j* a% [- D: Y
  920. ( \! C. @' i) K5 \) G* Y9 X. u/ M
  921.     Log "MaNGOS has not been installed after being built." 1" M% b  r+ R* F( e- z6 b
  922.     exit 0- W* R% x( ^' }$ v5 G6 _
  923.   fi
    + g* O. O2 \: F4 t8 d
  924. , q5 d! D: p* q2 o; l/ @$ l9 q
  925.   # Install MaNGOS* A0 y) A- h* R. a0 \& o+ E
  926.   cd "$SRCPATH/server/linux"
    ; _7 K/ i& r1 W4 k/ V* b# \1 x( W2 H
  927.   make install
    7 k; d  {0 w6 b; m- |: s4 l
  928.   a* g. P& f# u/ E: n1 z0 @
  929.   # Make sure the install succeeded( p1 N$ }  t! q7 c6 s% ?3 n
  930.   if [ $? -ne 0 ]; then. o! b; j# d! }2 t. a  ^9 \
  931.     Log "There was an error installing MaNGOS!" 1
    * {" L! w# a  a2 P# e9 W; I
  932.     exit 1
    6 s( \5 P9 N4 M! }
  933.   fi
    9 l9 Q; k* t( L' L# \2 N9 K
  934. }
    6 Y+ p# s/ R5 C0 x1 j) S. ?$ F

  935. 2 d" P/ X- l3 S  p0 p5 z0 S6 x; }
  936. # Function to apply database updates5 R0 F, {; e5 Y% H
  937. function UpdateDatabases()
    ; C/ a: j' k+ w& {0 V$ b- C8 v8 H
  938. {
    " }! \: q. I8 c) u1 y! Q2 B8 R
  939.   local DB_HOST="$1"
    ! H, d/ x. E9 u
  940.   local DB_TYPE="$2"
    0 G( h7 J( k: P6 y- Y' t; e  p
  941.   local DB_COMMAND="$3"
    : X$ p& E8 k: o
  942.   local DB_USER="$4"
    ! B- @3 j& ~# z2 h3 q
  943.   local DB_UPW="$5"
    6 J- F# T' O( N
  944.   local DB_REALM="$6": ]' R# H" Y. I$ b
  945.   local DB_WORLD="$7"6 V2 Q: ?1 ]+ R; m
  946.   local DB_TOONS="$8": }4 Y. o: H& P, C8 O
  947. , ]3 L+ V1 F! E* b1 _. O4 a9 q
  948.   # Loop through the character files' @; O) Y% }. ?& y$ Z$ l$ N, m
  949.   for pFile in $(ls $SRCPATH/database/Character/Updates/$(ls -a $SRCPATH/database/Character/Updates/ | tail -1)/*.sql 2>>/dev/null); do
    : {2 K% }* |* U  z$ i
  950.     if [ ! -f "$pFile" ]; then  `" [8 `0 ?7 M# d3 U* N
  951.       continue
    & c+ q# |0 u* @, S: f6 x* A
  952.     fi
    ! u; P" w% A& M
  953.     # Attempt to apply the update
    ) a: \1 ]& [" h, Y$ Z
  954.     $DB_COMMAND $DB_TOONS < "$pFile" > /dev/null 2>&19 }) T6 f: J! A( {( L/ l( n% H

  955. 8 E4 x1 z3 m3 T& O" s3 A- E
  956.     # Notify the user of which updates were and were not applied: ]/ W# N, b2 @* x3 L+ k1 ^+ F4 [
  957.     if [ $? -ne 0 ]; then  v) s) K) d8 j
  958.        Log "Database update "$pFile" was not applied!" 0
    ; A5 S- i/ n, W0 V: _
  959.        Log "Database update "$pFile" was not applied!" 1' A$ T5 o! l7 l# Q
  960.     else; P' M5 {: n: `3 ^. r0 f) O5 i
  961.        Log "Database update "$pFile" was successfully applied!" 0
    : q! U8 A3 E6 ]7 Q- i. v
  962.        Log "Database update "$pFile" was successfully applied!" 1
    3 p2 p$ K$ c; ~
  963.     fi
    ) ]2 R6 U; y" i* S4 O3 L
  964.   done
    ( Y6 f" F8 I8 I8 h
  965. & H. |! ?4 D9 Z& M
  966.   # Loop through the realm files
    . b; `& Y' C& A2 a4 H
  967.   for pFile in $(ls $SRCPATH/database/Realm/Updates/$(ls -a $SRCPATH/database/Realm/Updates/ | tail -1)/*.sql 2>>/dev/null); do
    8 R* _2 _1 X2 P  U6 h
  968.     if [ ! -f "$pFile" ]; then
    4 S8 A: t1 P4 C" T
  969.       continue
    ' ^7 ~  e6 ^; x3 G% X
  970.     fi( n/ _( O* p. }6 `  j7 n
  971.     # Attempt to apply the update
    ( }/ _" j+ D$ m5 _0 }: h
  972.     $DB_COMMAND $DB_REALM < "$pFile" > /dev/null 2>&13 y# F3 C4 u0 R: p0 N3 ~4 F

  973. : S! ]/ E+ W2 b; G( k8 f& J) M
  974.     # Notify the user of which updates were and were not applied
    5 S" l' S  E. e0 K, z
  975.     if [ $? -ne 0 ]; then
    + V+ C9 g" D) k8 T* n
  976.       Log "Database update "$pFile" was not applied!" 0
    3 f' W! H) A0 K& K
  977.       Log "Database update "$pFile" was not applied!" 1; X) V; s1 M+ B* X
  978.     else
    . K" l6 _& b: O  V# y/ G
  979.       Log "Database update "$pFile" was successfully applied!" 0
    - U7 Z- W6 m+ |6 h% `/ T5 `, g
  980.       Log "Database update "$pFile" was successfully applied!" 1
    + z9 {% O. B( `/ j7 ?0 u$ J4 T
  981.     fi3 k1 `! i3 C; b2 e$ ~
  982.   done* s  j7 t' J& [# p6 ?
  983.   C* b$ l4 n4 c/ e" F0 k
  984.   # Loop through the world files
    + d" Y" Q' a5 l0 S6 q; x2 p: H  Q
  985.   for pFile in $(ls $SRCPATH/database/World/Updates/$(ls -a $SRCPATH/database/World/Updates/ | tail -1)/*.sql 2>>/dev/null); do
    ; ^) B4 N4 W" K2 G) V; t
  986.     if [ ! -f "$pFile" ]; then( o" v2 Y& B; x
  987.       continue
    ) h" d! ~6 h$ f/ k7 {# |/ J
  988.     fi4 g- R# X3 M0 w: k; _8 Z9 F5 X9 D, h
  989.     # Attempt to apply the update
    / U$ b, K: \. F; u2 q
  990.     $DB_COMMAND $DB_WORLD < "$pFile" > /dev/null 2>&1
    * M' X% c; U  q; g$ n

  991. 8 ]3 x! o3 ]3 p& q3 p- u! `1 K
  992.     # Notify the user of which updates were and were not applied3 ~( B" {0 P! E
  993.     if [ $? -ne 0 ]; then2 `% c& o6 S7 d7 d3 A
  994.       Log "Database update "$pFile" was not applied!" 0/ ^( \6 q; ]7 A$ w4 Z8 b% i
  995.       Log "Database update "$pFile" was not applied!" 1
    4 {# H' M' Q! _* P
  996.     else
    7 b0 B% N* P% o# M: {% Q% O
  997.       Log "Database update "$pFile" was successfully applied!" 0
    # @% a' j3 j/ c6 G
  998.       Log "Database update "$pFile" was successfully applied!" 1
    7 A: t7 B+ x. g* t9 P
  999.     fi4 s8 q9 D  t8 q. L
  1000.   done1 P& _3 i/ U; `4 M4 U1 S- q
  1001. }/ v: [% J- b( `% K( u

  1002. # I3 {. K& T; f4 M  S
  1003. # Function to install or reinstall the databases" ^( H# x; Q1 l& f3 T, P/ _
  1004. function InstallDatabases(), k% k% {5 E% x0 q
  1005. {
    1 l* \8 l  }; L$ h# ]$ ]* ~  P9 U# j0 p
  1006.   local DB_HOST="$1"
    2 [4 E1 @/ g$ ~/ R  W# G) B. Z
  1007.   local DB_TYPE="$2"
    ; V+ R9 C7 B: W1 b3 |7 h
  1008.   local DB_COMMAND="$3"
    ' b4 E8 ]0 e  M9 s8 X' P7 y
  1009.   local DB_USER="$4"- \; T/ J- E+ a
  1010.   local DB_UPW="$5"
    9 X  |! e* X0 Y" \& {
  1011.   local DB_REALM="$6"2 A* V4 N0 R: }  t4 O: r* D
  1012.   local DB_WORLD="$7"
    / t* L' E, D6 L5 K, h$ }. S" o8 g
  1013.   local DB_TOONS="$8"8 a+ n; g, V$ E: l+ N* y

  1014. 8 D% y/ a( A4 O) y; c
  1015.   # First create the realm database structure- X+ O, i# ~, H6 [8 R
  1016.   $DB_COMMAND $DB_REALM < $SRCPATH/database/Realm/Setup/realmdLoadDB.sql
    * k7 ?" {  F( t+ e6 T

  1017. 6 k. F% @6 P, i( u6 ~3 \& s
  1018.   # Check for success6 [; X2 }; ?& D0 z+ E% s
  1019.   if [ $? -ne 0 ]; then
    6 C  F5 @7 e8 x/ t
  1020.     Log "There was an error creating the realm database!" 1
    + U# Z' H0 X; O3 }8 k  {! I
  1021.     return 1
    8 I+ P( ?+ E  @/ }8 x
  1022.   else
    " Y# a4 ~6 r. j2 ]$ E9 i: E
  1023.     Log "The realm database has been created!" 1
    7 I% y6 M3 [6 V* K  _$ ~) s
  1024.   fi- F" o. A8 Y# A+ W+ x# A8 V
  1025. 4 {  Z/ y' o2 Y
  1026.   # Now create the characters database structure
    ; O) G) E5 C8 P; ?* y# L
  1027.   $DB_COMMAND $DB_TOONS < $SRCPATH/database/Character/Setup/characterLoadDB.sql
    : _2 u- G2 g% {4 K0 h% w* o3 }

  1028. 9 |& `' G! K/ L9 J8 v
  1029.   # Check for success; U  k* o# b6 f( o/ {) s# a4 I
  1030.   if [ $? -ne 0 ]; then$ x, C$ u' G0 ~/ R& h$ G* Q
  1031.     Log "There was an error creating the characters database!" 1% n1 u. s( }3 ]1 q
  1032.     return 1# A' ]. }0 V. Y5 S
  1033.   else
      U. A7 m4 }# v1 C
  1034.     Log "The characters database has been created!" 1
    6 w, ?" L3 M0 Z
  1035.   fi+ _% _3 k! }2 V$ D* Y9 o
  1036. ' \5 v$ I# U" c. ^
  1037.   # Next create the world database structure
    ) c( j, f1 n  X1 s& r
  1038.   $DB_COMMAND $DB_WORLD < $SRCPATH/database/World/Setup/mangosdLoadDB.sql
    2 |( N8 E; B0 ~7 e; U% h- F1 ~

  1039. , f( n9 }; d, \  ]" j
  1040.   # Check for success* x$ a/ Q4 ?- ^& {
  1041.   if [ $? -ne 0 ]; then& R0 g3 F! {/ [( H( W
  1042.     Log "There was an error creating the world database!" 1: ~/ F1 h4 h& L$ w
  1043.     return 1
    ' e/ J0 \) }! O' j7 U$ L4 S
  1044.   else
    : s# Y9 ]/ T) |& }, y
  1045.     Log "The world database has been created!" 1
    + S0 D" N1 U/ t
  1046.   fi
    ( y, D: y( ]2 p) t4 s: ^
  1047. 7 e3 \8 A! F' Y. q2 i
  1048.   # Finally, loop through and build the world database database
    ' g' q) r% j+ t& N, v' T  R, Q
  1049.   for fFile in $SRCPATH/database/World/Setup/FullDB/*.sql; do. a8 f, B# |, w* K- J8 c
  1050.     # Attempt to execute the SQL file
    0 w; h$ d9 G& ~4 k) T" Z
  1051.     $DB_COMMAND $DB_WORLD < $fFile
    ( R5 j% {5 z1 h( T

  1052. 8 P/ R' f( e( q& n( S
  1053.     # Check for success0 r3 C3 {* a+ Z$ x4 C
  1054.     if [ $? -ne 0 ]; then
    " T7 N, h" l( w; Y* y
  1055.       Log "There was an error processing "$fFile" during database creation!" 1
    - @7 L4 r9 @7 c# i  q2 F3 F
  1056.       return 1
    : [2 n. J# d$ Y9 L
  1057.     else2 h* ]# f0 `8 M2 W; c
  1058.       Log "The file "$fFile" was processed properly" 1
    8 h1 x# S. E7 p7 Y" [- c
  1059.     fi
    & T0 Q( H& D% S
  1060.   done
    8 |  d- I+ p$ b1 H4 p
  1061. ! y6 {+ J% P7 ]: e( L
  1062.   # Now apply any updates
    ! X/ @$ b9 `/ s: R; N7 C  _
  1063.   UpdateDatabases $DB_HOST $DB_TYPE "$DB_COMMAND" $DB_USER $DB_UPW $DB_REALM $DB_WORLD $DB_TOONS
    5 H# Y# k4 o& Y$ |
  1064. }& o, A1 |3 ^" _5 H3 a5 [. ^7 Y# ?

  1065. $ O0 T) T- u3 V3 X0 P& Y$ J
  1066. # Function to install or update the MySQL/MariaDB databases
    - _; `$ f  x% C. R; A4 i6 Z
  1067. function HandleDatabases()
    . B' z  m7 r' ?5 b8 u$ X
  1068. {
    , Y7 v  ]" A/ ^
  1069.   local DBMODE="0"
      C# c  \% a4 H3 N  s
  1070.   local DB_TYPE="0"; Q! f& l( v4 d$ J  J$ P6 o( `
  1071.   local DB_COMMAND=""
    1 f% ?7 S9 I" ]# o+ U2 I% e
  1072.   local DB_TMP="0"
    # }2 W1 Y' ^" x. x: I8 Z
  1073.   local DB_USER="mangos"
    . k3 d# B/ A0 |
  1074.   local DB_UPW="mangos"
    / S: q5 F) X# n. Q! H' D8 f$ M
  1075.   local DB_HOST="localhost"
    $ l* J3 V- ^0 v5 O1 [6 l9 {8 R
  1076.   local DB_PORT="3306"
    1 q1 _+ W: t  z& j- Q& u
  1077.   local DBSEL="3"
    4 U5 ]+ L3 R: \8 ^  J
  1078.   local DB_REALM="_realm"7 P# u8 v. f) W4 p: i( ]
  1079.   local DB_WORLD="_world"1 q2 U0 d5 [- @3 N
  1080.   local DB_TOONS="_characters"
    / J# B/ n' {6 g/ T9 r; b
  1081. ; w6 K+ q0 Y2 y) v/ ~
  1082.   # Ask the user what to do here0 J  Y9 R# `) V: S  k! X
  1083.   DBMODE=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database Operations" \- j6 Z9 }% j3 Z2 u3 e& V" h# g
  1084.     --menu "What would you like to do?" 0 0 3 \
    7 q' e! L, @  j- V7 d, `, Y
  1085.     0 "Install clean databases" \8 M7 g6 ]- J: ?% i0 ~' q
  1086.     1 "Update existing databases" \" c' _8 ?  o' t" N% l! @( w
  1087.     2 "Skip database work" \$ o( b4 \9 g" o# g' g. `& k/ m: V0 G8 C( t
  1088.     3>&2 2>&1 1>&3)
    : G8 v' F4 L$ [
  1089. 4 p7 ?! H& L" _% `7 J4 P2 j
  1090.   # Exit if cancelled
    - H0 ?- k% d3 f; `+ m
  1091.   if [ $? -ne 0 ]; then
    3 k5 F& t: _& O: {
  1092.     Log "Database operations cancelled. No modifications have been made to your databases." 1
    8 b* H6 J8 W! p' t: J6 ]  X
  1093.     return 08 M# _3 _# N, r, u/ {
  1094.   fi
    ' P1 G* _3 S" X/ R: N3 f! q3 |

  1095. $ `! p8 {( K6 O, m7 p/ A/ ?4 T5 y
  1096.   # Exit if skipping
    1 L" c  F. L/ G% g+ v% Y- X
  1097.   if [ "$DBMODE" = "2" ]; then
    1 Q! ~  T6 V8 _' O
  1098.     Log "Skipping database work. Nothing has been modified." 1
    ) h7 b$ Y+ s& f' H9 d6 P
  1099.     return 0, y( ?4 n5 l- N( Y% E. e4 e
  1100.   fi) y) p8 s" P( L
  1101. 4 J. J0 ]: E( T4 d) e1 X- `
  1102.   # Ask the user the DB type
    8 o4 d7 ?9 K; l7 p
  1103.   DB_TYPE=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database Type" \1 S. j% C, z0 v- J0 n2 m3 w7 ]9 g% e
  1104.     --menu "Which database are you using?" 0 0 3 \2 V9 P. {. J- k
  1105.     0 "MariaDB" \/ `1 ]$ S% z' E: ?& v4 @; n6 o
  1106.     1 "MySQL" \9 {0 C- D: e3 [7 C1 q
  1107.     2 "PostgreSQL" \
    2 x- M! [! r! A! U5 ]$ |1 b
  1108.     3>&2 2>&1 1>&3)+ ~6 U4 Z- n3 H( Y9 A- ]* f# K9 N! V

  1109. , t. D" l8 N/ x, |
  1110.   # Exit if cancelled# E6 ~9 q5 U  ~( P% J1 k/ A5 E
  1111.   if [ $? -ne 0 ]; then
    9 b# [8 ^0 q9 {) S# r9 ^0 m$ }
  1112.     Log "Database type selection cancelled. No modifications have been made to your databases." 1
    - V  p0 R- @) Q, G8 w- K; B* ^2 f! v) y
  1113.     return 0, `5 ^. ]* d. v5 r4 e; L- j
  1114.   fi
    0 E9 o! L$ _/ V/ k3 ]

  1115. / E. G. c7 b* \" c+ h$ d7 J9 }
  1116.   # Get the database hostname or IP address
    - p2 k% f8 f* J5 t
  1117.   DB_TMP=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database Hostname Or IP Address" \7 g, ~( U3 Q+ B- k
  1118.     --inputbox "Default: localhost" 0 0 3>&2 2>&1 1>&3)  n! M  q  ^' V3 V4 M

  1119.   x7 R; b3 F' Y; V6 r6 z3 Q7 e
  1120.   # Exit if cancelled
    8 q, ?3 G) g2 i& `. K/ ?
  1121.   if [ $? -ne 0 ]; then& n' f* R5 a; e- ~7 e6 X
  1122.     Log "DB host entry cancelled. No modifications have been made to your databases." 1& @' x$ [7 t- Q6 ^; k
  1123.     return 0
    * X) A% a8 _3 s/ E+ {& Q( ^
  1124.   fi
    ( f+ {' m6 Y; D, W- i
  1125. , ^! |! D) c1 s# m9 L" \/ d
  1126.   # Set the hostname or IP address if one was specified
    6 O$ C! K1 y8 I5 ?  r" B
  1127.   if [ ! -z "$DB_TMP" ]; then% i( d' j$ L( i$ i8 ^+ \8 p+ R
  1128.     DB_HOST="$DB_TMP", K" V6 R! L9 Y9 K9 w. I( {0 e' f
  1129.   fi% _, Q5 Q/ U. Y! z4 a: o

  1130. . k5 k" C$ |( y& ?+ z) L
  1131.   # Get the database port* I/ l3 M/ {) ~2 q" t8 q3 L
  1132.   DB_TMP=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database port" \
    ( L3 F6 `7 Q2 j- ]
  1133.     --inputbox "Default: 3306" 0 0 3>&2 2>&1 1>&3)9 M/ l, f6 d$ N: z; {

  1134. , c2 J0 C# f" u5 E, c! g9 V! ~
  1135.   # Exit if cancelled
    / w- @& Y. }! \4 l  D
  1136.   if [ $? -ne 0 ]; then, ^$ U+ e" p  A1 s' H6 _
  1137.     Log "DB port entry cancelled. No modifications have been made to your databases." 1
    9 a! M1 C5 m5 t+ A; T' S
  1138.     return 0- i* C/ y3 ?# ^" I6 H
  1139.   fi# D" T5 v2 z. z( o$ z% f' |. x# @
  1140. . @/ f+ y. E: L1 W
  1141.   # Set the port number if one was specified
    ; a1 p8 D! o% A* ?
  1142.   if [ ! -z "$DB_TMP" ]; then* u/ A+ |9 a$ t. G% _! k
  1143.     DB_PORT="$DB_TMP"# }! H3 h4 e! J$ j, T
  1144.   fi# r: |3 a7 x: i+ U, E( U+ o/ [6 H
  1145. 3 G7 O; D9 `7 e
  1146.   # Get the database user username/ p  ]) {! @, a- C9 R
  1147.   DB_TMP=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database User Username" \) u8 m0 x; `0 c7 n( \9 a; C
  1148.     --inputbox "Default: $DB_USER" 8 60 3>&2 2>&1 1>&3)2 B5 j5 u; y2 t# C% t1 l% ~
  1149. ( E5 ^! T; y; r
  1150.   # Exit if cancelled
    4 J9 R% I( w! q( p2 G  j) u
  1151.   if [ $? -ne 0 ]; then6 ?! K) o# b8 J6 \$ i/ l6 u8 J
  1152.     Log "DB user name entry cancelled. No modifications have been made to your databases." 1
    ; j3 e- j5 A/ u& d6 L/ w' P
  1153.     return 0
    " k) I* A' c  ]3 y5 D! O. z# ^
  1154.   fi5 p' Q$ {4 G* F+ ?

  1155. 6 J" q/ s5 S% D# H
  1156.   # Set the user username if one was specified# i) }- l: E5 r5 g
  1157.   if [ ! -z "$DB_TMP" ]; then
    $ I! b5 m, _$ {0 u
  1158.     DB_USER="$DB_TMP"
    * R0 b, @0 }6 O
  1159.   fi
      s! F0 d8 [! e8 H9 H3 h
  1160. 5 @- C1 d1 K7 R' o$ q* O
  1161.   # Get the database user password& L3 G9 z) e2 y% K: Q9 B- Z9 A
  1162.   DB_TMP=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Database User Password" \5 ]+ ~* K( w8 y( t5 w
  1163.     --passwordbox "Default: $DB_UPW" 8 60 3>&2 2>&1 1>&3)
    : O' ?2 g- |% z1 B

  1164. + Y4 @6 u  m; W- s- A5 c
  1165.   # Exit if cancelled8 b* N9 D9 d9 k/ i5 \/ ~; ?$ c1 G- e
  1166.   if [ $? -ne 0 ]; then8 K% j# V/ j: H& S) Y5 |% v: ?0 n0 A
  1167.     Log "DB user PW entry cancelled. No modifications have been made to your databases." 1
    5 Z! F' f. {/ S, e& z, e. x& v; C
  1168.     return 0
    $ ]) ?$ G- v& l8 r# r" v1 r+ p
  1169.   fi
      a; G& |- C( i+ u0 K
  1170. $ r  X* K% S2 d
  1171.   # Set the user password if one was specified, L" v6 V7 H  J: Q7 h
  1172.   if [ ! -z "$DB_TMP" ]; then2 M5 M  g7 r4 [6 _5 S# N$ t2 ~
  1173.     DB_UPW="$DB_TMP"
    6 U" @% u) j& Y5 l5 {* w( Z2 \& v
  1174.   fi" q- d# n5 y0 [8 K1 G: B9 K" M
  1175. % ?5 d9 z5 \0 G2 x! P: N
  1176.   case "${DB_TYPE}" in
    0 k  C) ?. ~0 L3 s, }% a1 k" S; `2 D
  1177.     "0")' x! e0 ~. `: S
  1178.         DB_COMMAND="mysql -u ${DB_USER} -p${DB_UPW} "
    # C5 I9 H0 U, f
  1179.         ;;. G# R% z3 @7 E$ `8 {9 A1 p
  1180.     "1")
    ; Y2 \# X4 M' W$ ~8 b4 `$ P% e4 ^
  1181.         printf "Confirm your MySQL password\t, ". G2 O( y" m4 u8 h5 \
  1182.         mysql_config_editor set --login-path=local --host=$DB_HOST --port=$DB_PORT --user=$DB_USER --password --skip-warn
    ( l) D, @+ B% k  t: r9 S* m
  1183.         DB_COMMAND="mysql --login-path=local -q -s "
    + j& j; C; D% [0 M( A
  1184.         ;;4 z0 W+ O- q; n/ I: S
  1185.     "2")5 t5 x1 r. l$ |5 V0 E0 |6 z
  1186.         Log "Currently not supported." 1
    2 ~9 A4 V4 f8 g8 u7 M3 L* G
  1187.         return 0, P* T& Z0 M  z% G
  1188.         ;;
    + g7 `' B5 G! y+ Q% w. K1 N
  1189.   esac: [5 @- a: q* ~8 Q
  1190. # l+ _. i! u% e$ t- `
  1191.   # Setup database names based on release
    6 H" b, ~: g1 ~6 \  n6 Z- W
  1192.   DB_REALM="$DB_PREFIX$DB_REALM"# ^1 y1 ~/ q. c7 O& y' f
  1193.   DB_WORLD="$DB_PREFIX$DB_WORLD"* _- n' c; m4 \7 f
  1194.   DB_TOONS="$DB_PREFIX$DB_TOONS"' q7 p3 v% c( ?# P3 }9 k
  1195. ; Z: r9 G/ b  t5 F: b1 p* F
  1196.   # Install fresh databases if requested
    * b( M7 H0 d, }! N3 B! |8 b
  1197.   if [ "$DBMODE" = "0" ]; then
    0 i3 |  h  x. C7 f- Z7 e
  1198.     # Ask which databases to install/reinstall8 ~: c) @  t4 Q0 @$ `/ _7 c1 A2 B
  1199.     DBSEL=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Select Databases" \
    4 ?8 F% j. Y3 V5 \, j' T/ e  [9 _% C2 e
  1200.       --checklist "Select which databases should be (re)installed" 0 60 4 \
    6 }. n5 n# K, V% ~# l! w* |) r' Z$ N
  1201.       0 "(Re)Install Realm Database" On \) E8 ~3 T, Y: J1 M+ G% h$ {1 P3 J# Y% s
  1202.       1 "(Re)Install World Database" On \, p$ [( a% u* K1 t
  1203.       2 "(Re)Install Characters Database" On \7 b) ^. k  I* O0 o: M9 S
  1204.       3 "Update the realmlist" On \  z$ k* ~& [* d8 \& K2 |: w
  1205.       3>&2 2>&1 1>&3)
    7 h7 n$ ?2 w& B1 [' ~. u' I# N
  1206. ; C( W8 P* l  j7 t
  1207.     # Exit if cancelled' o7 g0 n3 l3 @
  1208.     if [ $? -ne 0 ]; then. ^; E# I4 Q2 Y0 b7 @
  1209.       Log "DB selection cancelled. No modifications have been made to your databases." 1
    + i$ U/ `5 {/ Z4 V5 Z- g
  1210.       return 02 ?4 X( f- P) T2 M& ]* q
  1211.     fi4 g7 `/ r( Q6 x

  1212. % s2 x0 |3 `) Z1 k3 p) B+ S, J
  1213.     # Remove and create the realm DB if selected- ~9 j% K  ]* ~
  1214.     if [[ $DBSEL == *0* ]]; then
    6 U- y5 j+ Y2 z! @
  1215.       $DB_COMMAND -e "DROP DATABASE IF EXISTS $DB_REALM;"$ _8 l$ l  ]" }4 j8 s$ l/ f- ^
  1216.       $DB_COMMAND -e "CREATE DATABASE $DB_REALM;"8 z5 @6 N: w/ @" r
  1217.     fi0 |6 H- _, I; C6 S2 c

  1218. / N7 d& W0 e9 n- \' q
  1219.     # Remove and create the world DB if selected
    1 ]7 x  F; g5 Y: @5 ^  {' l
  1220.     if [[ $DBSEL == *1* ]]; then( C: Y# O, M& `: G7 [9 ^
  1221.       $DB_COMMAND -e "DROP DATABASE IF EXISTS $DB_WORLD;"* i( i8 ?* f. ]: b6 o7 {+ [5 C
  1222.       $DB_COMMAND -e "CREATE DATABASE $DB_WORLD;"$ f* ^$ ^1 m+ S+ R
  1223.     fi  E$ ?; ?, d' i- C" o2 j  \* R

  1224. ) {, b. W5 B2 r" {
  1225.     # Remove and create the character DB if selected
    4 d7 g, ]1 n( b( U
  1226.     if [[ $DBSEL == *2* ]]; then$ K6 p0 G; m$ P
  1227.       $DB_COMMAND -e "DROP DATABASE IF EXISTS $DB_TOONS;"! u# b! f/ ?  m, C; X8 |
  1228.       $DB_COMMAND -e "CREATE DATABASE $DB_TOONS;", @, s2 |6 c( [2 B
  1229.     fi" o: O2 m5 a! Z) J

  1230. " i$ R& w  q* M' _8 x5 N7 k
  1231.     # Validate success
    3 f& W. S5 S; ?
  1232.     if [ $? -ne 0 ]; then
    ) _1 F% E" E4 U2 G& j9 p0 k8 h
  1233.       Log "There was an error creating the databases!" 11 G6 B# _% z0 l& p! M$ g
  1234.       return 1$ {" h; t$ e( _8 ]& f% u3 y
  1235.     fi; ?( j9 ?" F2 c# W: N0 X

  1236. * _: D" `' g9 |9 D. e9 m- a# C. f% H
  1237.     # Finally, populate the databases  q" ^% A4 T, x$ A$ O
  1238.     InstallDatabases $DB_HOST $DB_TYPE "$DB_COMMAND" $DB_USER $DB_UPW $DB_REALM $DB_WORLD $DB_TOONS
    # x+ u% z' ~7 u
  1239. + H( u' J7 ^! |& x# e& K$ X
  1240.     # Updating the realmlist
    * u$ J6 j3 _% M( ]) G" {: p; y
  1241.     if [[ $DBSEL == *3* ]]; then1 j0 h  P, m1 d& K8 H: e
  1242.       $DB_COMMAND $DB_REALM < $SRCPATH/database/Tools/updateRealm.sql3 X6 M! ~8 L' V" f8 E# j9 l# Q6 \$ p
  1243.     fi
    6 G+ H+ ~( T$ X& S1 B
  1244.   fi
    $ T) E" ?$ |: n: q
  1245. $ G' u# X3 E. h$ e$ {8 Y, _4 O' Y: T
  1246.   # Update the databases if requested5 K) R! m4 d6 e9 @2 m# e
  1247.   if [ "$DBMODE" = "1" ]; then
    ' Q3 U6 ?% j; P' t9 O# }7 C# x
  1248.     UpdateDatabases $DB_HOST $DB_TYPE "$DB_COMMAND" $DB_USER $DB_UPW $DB_REALM $DB_WORLD $DB_TOONS
    / L4 |+ Q2 Y3 O* A0 f$ a/ [) f
  1249.   fi1 y' \/ c  }4 _: x& ^
  1250. }
    # F5 }& R: H8 N0 T" E

  1251. - [3 m& s) B7 {
  1252. # Function helper to extract resources (mmaps, vmaps, dbc, ...) from the game+ i- b7 k3 a, s6 ^9 P1 \  q0 {
  1253. function ExtractResources
    0 I$ S+ @  d5 }7 I6 H
  1254. {' ^& ~# B4 ?6 D  c& b
  1255.   INSTGAMEPATH=$(dirname $(find /home -name "WoW.exe"| head -1 2>>/dev/null))5 z/ O/ g9 _" ]1 E$ x: `

  1256. , E, \% ^5 d  w: f1 W3 p
  1257.   GAMEPATH=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "WoW Game Path" \
    * ?& F5 ^8 ]0 \: y
  1258.     --inputbox "Please, provide the path to your game directory. Default: $INSTGAMEPATH" 8 60 3>&2 2>&1 1>&3)
    ; u; V& U5 {+ x9 l; t0 Q0 y

  1259. % c# H  A+ z1 o# Q
  1260.   if [ -z "$GAMEPATH" ]; then
    7 b5 ^( D- o7 [3 ~; x. c1 U; A1 {
  1261.     GAMEPATH="$INSTGAMEPATH"9 L0 T0 Q6 v& _! I! z6 D
  1262.   fi
    ' z0 `* |2 J" U3 O" N+ h
  1263. " ^, X/ O. `6 f& e: h& x4 Z
  1264.   if [ ! -d "$GAMEPATH" ]; then0 y8 V- a( E6 ~  M. G4 \9 m1 u
  1265.     Log "There is no game at this location" 1
    ! s1 S6 e; @% F7 |' i0 B
  1266.     exit 15 T/ `% W# I3 a" I; z
  1267.   fi, N. Q+ g  c. P5 u, L3 b$ x( p
  1268. * j9 o: M( d7 |& W1 `' A
  1269.   ACTIONS=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Select Tasks" \, @6 c1 V2 ~% i& K% i  p5 d
  1270.     --checklist "Please select the extractions to perform" 0 70 3 \9 U) Q; b$ d4 l' [2 S# D/ T
  1271.     1 "DBC and Maps" On \/ \  u: b' ?2 h
  1272.     2 "Vmaps" On \
    * Y2 N/ J  f3 j$ v7 a! C6 o
  1273.     3 "Mmaps" On \
    6 p6 R4 X' ^! l8 b3 w) O
  1274.     3>&2 2>&1 1>&3)7 p4 D, Q# R( ^0 W

  1275. , I  `/ L: x3 X$ W% T! z6 @
  1276.   if [ ! -d "$INSTPATH/bin/tools" ]; then
    % n7 |/ j5 d7 }% \8 E
  1277.     Log "The client tools have not been built, cannot extract data" 16 O: D/ \- ]+ F- k" A' D4 p8 @
  1278.     exit 1
    ! f6 u( u- ]% U% n- }% M1 z1 ?
  1279.   fi7 H6 c( m) L# m1 Q& W& i8 w) `
  1280. ( y/ q$ [  F8 r/ m* z
  1281. #TODO What if DBC are not yet generated ??
    3 `! M5 W: r3 a8 _# a% T
  1282.   if [[ $ACTIONS == *1* ]]; then
    ' F- M0 b5 H% l( k& s2 t$ d; N
  1283.     if [ -d "$GAMEPATH/dbc" ]; then# K' j/ V! X3 i+ m
  1284.       $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "DBC and Maps were already generated" \
    & z! }) y* M, S* p; t% C. q
  1285.         --yesno "Do you want to generate them again?" 8 60
    5 p* T9 s3 s% w+ _7 o8 `

  1286. " O" V0 O9 g0 W: Y& `# i
  1287.       # Check the user's answer7 T: y7 R; ]+ b5 Y
  1288.       if [ $? -eq 0 ]; then9 B2 e: b1 g5 {& F/ ]
  1289.         Log "Deleting DBC and Maps previously generated." 15 l0 G" m( P6 C
  1290.         rm -rf "$GAMEPATH/dbc"2 w  c' t; r4 B) C* ]
  1291.         rm -rf "$GAMEPATH/maps") A+ s0 Z6 o" f+ ?/ W

  1292. ' G# s* e4 h7 A
  1293.         Log "Copying DBC and Maps extractor" 0
    & L; n8 p) a8 p5 v6 |1 [9 A
  1294.         rm -f "$GAMEPATH/map-extractor"9 q# O4 U  U. ^% y/ ]
  1295.         cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
    9 W  l/ @. S  r

  1296. 2 D. g4 a9 J- R4 @  a
  1297.         Log "Extracting DBC and Maps" 0# v7 `7 A0 h- p) S
  1298.         cd "$GAMEPATH"
    ; R) G0 b% G5 O9 V& P, x
  1299.         ./map-extractor1 H! x8 m% Q2 j, C8 y

  1300. 4 G5 \, z: }$ B) n0 Y/ S  h/ `
  1301.         if [ $? -eq 0 ]; then9 C& ~  B8 T0 k5 E" k: G& u
  1302.           Log "DBC and Maps are extracted" 0
    " ^# ?  X8 T2 ]8 i
  1303.           Log "Copying DBC and Maps files to installation directory" 0
    8 k+ G+ q0 b. z, J* g
  1304.           cp -R "$GAMEPATH/dbc" "$INSTPATH/bin"! o; N0 P5 J! x9 E- ~  r9 c
  1305.           cp -R "$GAMEPATH/maps" "$INSTPATH/bin"
    " t) c0 j# @; l
  1306.           rm -rf "$GAMEPATH/map-extractor"
    ' U( ?! ~' ?$ B0 o7 f; b: G
  1307.           Log "Changing ownership of the extracted directories"
    0 y. w2 u2 l. \7 Q" x  S5 Q! C
  1308.           chown -R $USER:$USER "$INSTPATH"% P+ x3 j5 u( W4 H  ?" a& l
  1309.         else9 }  a8 C( z' D4 C0 ^
  1310.           Log "There was an issue while extracting DBC and Maps!" 1
    ' d5 l) c* C! U8 A  q$ O2 G3 b/ R8 }
  1311.           rm -rf "$GAMEPATH/map-extractor"
    : y4 j" y* [/ S7 @- i& H: L. J
  1312.           rm -rf "$GAMEPATH/dbc"
    2 W% F: E5 x0 ^! c- u) E0 n% e: ]
  1313.           rm -rf "$GAMEPATH/maps"
    * h7 Y" U, U# }2 Y# ?* \
  1314.           exit 11 U& u6 ~9 y1 @
  1315.         fi2 F. @- b7 ]; c
  1316.       else& O' C- l4 O+ z/ A* z6 e# w
  1317.         Log "Copying DBC and Maps files to installation directory" 0
    2 w4 u( G5 \! G: W4 a! L  J
  1318.         cp -R "$GAMEPATH/dbc" "$INSTPATH/bin"8 ]  \0 Y9 x1 K8 Z
  1319.         cp -R "$GAMEPATH/maps" "$INSTPATH/bin"
    0 ?* C& ~6 d5 I: z+ c) J# p  p8 i
  1320.       fi: {% C7 t' Q' w4 o2 G" E5 [
  1321.     else2 ~: y' k  z/ d: @
  1322.     rm -rf "$GAMEPATH/map-extractor"- f( X9 |/ \8 {4 S
  1323.     cp "$INSTPATH/bin/tools/map-extractor" "$GAMEPATH"
    ) y$ O3 M, ~& u2 `% ^. O7 _

  1324. 8 C4 F1 M4 P. S4 J
  1325.     Log "Extracting DBC and Maps" 0
    : O# }. G! B' u3 a
  1326.     cd "$GAMEPATH"
    0 k: F: Y8 y+ C& i  t. ~- {% w2 f; X
  1327.     ./map-extractor
    9 |/ k" s) U5 Z) j, D: q8 `

  1328. 2 d" u( n% n) l, s! ?6 l5 z
  1329.     if [ $? -eq 0 ]; then" S, ]7 M7 r4 g* r/ G3 q% j  Z
  1330.       Log "DBC and Maps are extracted" 0
    / @" `8 e- \7 ]
  1331.       Log "Copying DBC and Maps files to installation directory" 0
    * g- s/ O4 v) x" ]. o
  1332.       cp -R "$GAMEPATH/dbc" "$INSTPATH/bin", e2 V9 n" F$ F9 k' U5 F
  1333.           cp -R "$GAMEPATH/maps" "$INSTPATH/bin"
      y% C4 s$ a$ I+ o# t3 R  I
  1334.           rm -rf "$GAMEPATH/map-extractor"7 D' [. D2 G9 @5 Y
  1335.           Log "Changing ownership of the extracted directories"
    ) b$ Z8 h) |- ]4 f! V
  1336.           chown -R $USER:$USER "$INSTPATH"
    / b: O6 k5 U, D9 O- z8 [3 i& U
  1337.         else: l% N# h$ ^/ i: F" F
  1338.           Log "There was an issue while extracting DBC and Maps!" 1( i9 C3 a$ E- {1 W5 D; [, S
  1339.           rm -rf "$GAMEPATH/map-extractor"5 [- ~, i4 O- l! B* u! Z( Z( i; j
  1340.           rm -rf "$GAMEPATH/dbc"
    3 d5 w, w) r& m. p* A( `) i
  1341.           rm -rf "$GAMEPATH/maps"
    ) a$ ]0 \# \: n6 E! y$ E! O
  1342.           exit 17 H7 o: t( {3 E; I
  1343.         fi. U* A* J; ^. o
  1344.     fi7 u( t& H- _% U) e
  1345.   fi
    9 N' \9 ?2 X* s5 }, b! ~+ R: T+ J

  1346. + d, y$ V1 P! B* _; }3 U/ d) |
  1347.   if [[ $ACTIONS == *2* ]]; then
    ( V; D- N' T* V! n/ _  }* b4 `
  1348.     if [ -d "$GAMEPATH/vmaps" ]; then0 F7 l* M  z4 a5 m1 Q: W8 ?
  1349.       $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "VMaps were already generated" \
    / e8 v( T9 K7 M% X1 o7 b! d2 }3 _
  1350.         --yesno "Do you want to generate them again?" 8 60
    2 [8 k2 V7 q6 J. u% J
  1351. & l7 L' [* p7 y: P$ ]4 k1 {
  1352.       # Check the user's answer
    * a8 \+ x8 I. z7 N- E/ x. j
  1353.       if [ $? -eq 0 ]; then
    % S% l" P$ k( O1 O1 Q- c
  1354.         Log "Deleting VMaps previously generated." 1: V1 s4 |. E9 x, s5 y' s
  1355.         rm -rf $GAMEPATH/vmaps# W- s4 @: d) Q! ~5 k
  1356.         Log "Copying VMaps extractor" 0
    : }4 [4 n) ^; V0 r7 }
  1357.         rm -f "$GAMEPATH/vmap-extractor"4 p( @3 }8 v7 ?$ p2 _1 d) r- m) D
  1358.         cp "$INSTPATH/bin/tools/vmap-extractor" "$GAMEPATH"6 E8 z% t7 b- I( d& D6 d
  1359. , C+ G% g" {1 O2 A  O
  1360.         Log "Extracting VMaps" 0; _* q0 s5 R) A( t+ Y
  1361.         cd $GAMEPATH# A/ s/ l2 M  x! d1 R4 `- c
  1362.         # Make sure there is no previous vmaps generation that cause issue." T: ?- j( u, Z/ ~. Q& m
  1363.         rm -rf Buildings/ b" [2 K0 J/ h# q
  1364.         ./vmap-extractor
    4 y  t' v2 V  |! W. p
  1365. 2 V' J' h& _3 b% c
  1366.         if [ $? -eq 0 ]; then
    9 p2 w; S2 r7 q9 z* M4 j
  1367.           Log "VMaps are extracted" 0
    7 g, M! [5 O8 _6 ?* x2 M! c- O
  1368.           Log "Copying VMaps files to installation directory" 0
    % B/ B) ~# I6 v, u. W; C# z& ?& }
  1369.           cp -R "$GAMEPATH/vmaps" "$INSTPATH/bin"4 [( W$ a& c" m, K5 l' ]/ P# U
  1370.           rm -rf "$GAMEPATH/vmap-extractor"
    ( K4 l; W& z9 Z9 z/ }
  1371.           Log "Changing ownership of the extracted directories"/ }* N% V& q6 o+ a8 I* V
  1372.           chown -R $USER:$USER "$INSTPATH"- [' O* s$ E# k/ C
  1373.         else
    5 D4 X* H# p0 z6 J+ R; j* d2 v+ }
  1374.           Log "There was an issue while extracting VMaps!" 1
    , \' F% M* \  |1 K
  1375.           rm -rf "$GAMEPATH/vmap-extractor"
    # \' t1 U) F" O& _& a3 E  e# q
  1376.           rm -rf "$GAMEPATH/vmaps"% v, s1 I& E' B/ X4 w$ C
  1377.           exit 1. W$ ~. r- q! B: A$ a+ G. }# T3 V
  1378.         fi% ]4 f  @* @* h- y  P
  1379.       else( h8 N* q& E1 u9 f; Y/ q% X; d1 K
  1380.         Log "Copying VMaps files to installation directory" 0
    $ L* Q- z. G6 {7 z4 A
  1381.         cp -R "$GAMEPATH/vmaps" "$INSTPATH/bin"
    2 l) F$ n7 s8 C' u% n% ?& X; ]
  1382.       fi2 n7 T% ^9 {: A3 l# s' M; {7 _
  1383.     else  m- `7 k, }3 h* k. D% m3 l
  1384.      Log "Copying VMaps extractor" 0( ^. @; Y4 V. U. N9 h
  1385.      rm -f "$GAMEPATH/vmap-extractor"
    ! R. |& D0 E. j
  1386.      cp "$INSTPATH/bin/tools/vmap-extractor" "$GAMEPATH"
    ! d6 ?! [+ h+ g; x
  1387. ' V5 u1 H5 }; L' u, u" L9 T
  1388.      Log "Extracting VMaps" 0
    1 |' h: I: W) ^& t( R  v
  1389.      cd $GAMEPATH
    6 B& t3 h% i+ D: N, _- r
  1390.      # Make sure there is no previous vmaps generation that cause issue./ E: C! ]8 m! w( z; t
  1391.      rm -rf Buildings
    6 q! {" [+ Z" t9 ~+ J
  1392.      ./vmap-extractor
    , a4 {3 f) I- i* I) E

  1393. " c3 \+ x+ H4 h8 U4 M
  1394.      if [ $? -eq 0 ]; then& B6 g; ^7 b4 w) _8 h" c+ o" P
  1395.        Log "VMaps are extracted" 0
    # f) F% y% _) d. H' h8 p
  1396.        Log "Copying VMaps files to installation directory" 02 \, I5 E. h$ |6 s
  1397.        cp -R "$GAMEPATH/vmaps" "$INSTPATH/bin"
    " o1 w4 b1 T; ], u; S8 X- m
  1398.        rm -rf "$GAMEPATH/vmap-extractor"0 k' Y& C1 `6 G7 }
  1399.        Log "Changing ownership of the extracted directories"
    8 W/ n+ H- x0 C; i
  1400.        chown -R $USER:$USER "$INSTPATH"/ X4 G, t0 A7 r; @: B. T% b5 G
  1401.      else6 f: E6 f* J: s! A4 y
  1402.        Log "There was an issue while extracting VMaps!" 1$ a1 E1 k1 Q" i! ~% ^
  1403.        rm -rf "$GAMEPATH/vmap-extractor"* o4 w/ u5 T" s2 R% ?1 m
  1404.        rm -rf "$GAMEPATH/vmaps"
    ) d) W( _9 d5 }
  1405.        exit 1
    . S. n6 c/ I3 n3 G0 s5 O
  1406.      fi+ N. s6 [9 M( n9 R8 H
  1407.     fi
    8 S, z5 W6 m1 ^
  1408.   fi
    ! S2 G: G3 \  a/ D' k% [

  1409. % g: T: ?. R' Y6 |- z8 L
  1410.   if [[ $ACTIONS == *3* ]]; then2 C7 f0 @! g7 m) O, r( a0 O7 J
  1411.     if [ ! -d "$GAMEPATH/maps" ]; then
    : K, P) \1 D5 r* _4 ]7 w/ y( d
  1412.       Log "Error: maps files must be created to be able to generate MMaps!" 1$ _8 Y6 s- Z6 D& o6 k8 F
  1413.       exit 1
    # p4 R* D5 ]9 x% ?- C+ p' i7 Y( |
  1414.     fi* v  n: L5 z3 G& v/ L

  1415. 0 I6 p0 y& c2 g
  1416.     if [ -d "$GAMEPATH/mmaps" ]; then  e; p9 s1 ]4 N. z7 k
  1417.       $DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "MMaps were already generated" \
    3 i/ y# |; E0 G0 o' }; Y
  1418.         --yesno "Do you want to generate them again?" 8 60! b( L& U6 H6 H$ Y8 o4 G6 U

  1419. 6 Y- s- V% {; y+ ~% V! K4 s
  1420.       # Check the user's answer
      M' B+ r" t. V9 z/ \
  1421.       if [ $? -eq 0 ]; then
    ) a; p, F# G4 M  L
  1422.         Log "Deleting MMaps previously generated." 1+ }( R3 F! I' K1 [
  1423.         rm -rf $GAMEPATH/mmaps
    . q4 o8 u3 a- G' W0 }, C: P

  1424. $ |1 R2 o" [. {; L
  1425.         Log "Copying MMaps extractor" 0
    3 C  C0 W( f& r* a% a. P* a
  1426.         rm -f "$GAMEPATH/MoveMapGen.sh"
    ( S1 h; m! ]5 c0 Y: u% J
  1427.         cp "$INSTPATH/bin/tools/MoveMapGen.sh" "$GAMEPATH") w+ ^% p  N( R6 w" H! f  M
  1428.         cp "$INSTPATH/bin/tools/offmesh.txt" "$GAMEPATH"
    7 v1 f% e7 I$ @* V5 e' S# K3 R
  1429.         cp "$INSTPATH/bin/tools/mmap_excluded.txt" "$GAMEPATH"2 R$ o- g( ?- ]- Z( p
  1430.         cp "$INSTPATH/bin/tools/mmap-extractor" "$GAMEPATH"
    : N6 A: c4 R4 H0 Z: x

  1431. , C0 y: z/ I5 I8 @3 K! S" T# Z
  1432.         CPU=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Please provide the number of CPU to be used to generate MMaps (1-4)" \/ ]9 \8 ~; d4 g% X0 f
  1433.          --inputbox "Default: 1" 8 80 3>&2 2>&1 1>&3)
    $ d  x. H9 S, p! C$ L7 h

  1434. ( r( X5 m+ ^; M3 m( q2 t
  1435.         # User cancelled his choice, set default to 1.1 Q$ r/ e6 e" ~
  1436.         if [ $? -ne 0 ]; then# O% y' Y0 |* q- C6 O
  1437.           Log "User selection was cancelled. Max CPU set to 1." 1
    - t1 [( D  r. u) f( N+ a/ @$ D
  1438.           CPU=10 ]  t( j; Q5 C
  1439.         fi" C8 l% t/ v# B' O, E  M: j
  1440. , ~# W2 c9 n$ [
  1441.         if [ -z "$CPU" ]; then
    ' q6 R% r* K* y4 t5 Q  ~( I
  1442.           Log "User didn't gave any value. Max CPU set to 1." 1
    4 q1 q3 B4 u+ u! i4 n
  1443.           CPU=12 O. {+ _: @8 l- Q" c$ A
  1444.         fi
    8 R3 o7 M- d/ `* L6 Y# k
  1445. " w0 M! i: O  O. ^
  1446.         if [ "$CPU" -lt 1 ] || [ "$CPU" -gt 4 ]; then
    * x0 w$ b9 L% u' B6 S4 o* t( ^1 r. H7 D
  1447.           Log "User entered invalid value. Max CPU set to 1." 1
    ) F9 p3 O" W. I: d6 K9 g4 P& X
  1448.           CPU=1( _( b& @$ C0 E  R# _% k
  1449.         fi9 Q, _) W/ r1 y# D, [
  1450. " ^- j8 X' _( M, R( [8 y# P
  1451.         Log "Extracting MMaps" 0
    8 @  ]: |: Q9 m5 Z
  1452.         cd $GAMEPATH, h$ n" R: B7 r2 M
  1453.         # Making sure we can execute the script% S$ f# n4 w. B5 p. I( Q
  1454.         chmod 700 MoveMapGen.sh, D7 L* P+ m6 P2 i
  1455.         ./MoveMapGen.sh $CPU3 U- H8 d+ r0 W6 X0 W
  1456. * o. r8 a2 r0 P0 ?- X4 E" `
  1457.         if [ $? -eq 0 ]; then
    3 ~- Q2 J- `1 \" {. E: ], O
  1458.           Log "MMaps are extracted" 0
    6 F/ G2 p" P. F% l
  1459.           Log "Copying MMaps files to installation directory" 03 u! a8 H" k( p0 L8 D8 w
  1460.           cp -R "$GAMEPATH/mmaps" "$INSTPATH/bin". G8 V& d/ b$ u5 [2 D  B! @' M
  1461.           rm -rf "$GAMEPATH/MoveMapGen.sh"
    % L5 h& M$ i) Y- g* |; R: A7 G
  1462.           rm -rf "$GAMEPATH/offmesh.txt"
    , t7 m" G( B+ {1 N
  1463.           rm -rf "$GAMEPATH/mmap_excluded.txt", H2 ?% s7 f( {. W! E% K' ~
  1464.           rm -rf "$GAMEPATH/mmap-extractor"
    % Z6 ~- k& A$ \: i! W
  1465.           Log "Changing ownership of the extracted directories"( L  a! q: C  Z0 w
  1466.           chown -R $USER:$USER "$INSTPATH"$ x# ?. {: @$ T& O
  1467.         else
    . p" |: W3 ]# v% v, P; y7 {; G, s
  1468.           Log "There was an issue while extracting MMaps!" 1
    # X/ q& b, \( }3 R) L8 J/ e2 ^6 d* Z
  1469.           rm -rf "$GAMEPATH/MoveMapGen.sh"$ ?/ S; F/ V3 U# \. A
  1470.           rm -rf "$GAMEPATH/mmaps") I( V. h4 J& C
  1471.           rm -rf "$GAMEPATH/offmesh.txt"4 i( H# |5 ]( Q; _6 k; }& L
  1472.           rm -rf "$GAMEPATH/mmap_excluded.txt"( ^5 z% o; t+ t( v7 E4 b5 w( r
  1473.           rm -rf "$GAMEPATH/mmap-extractor"
    : Z# |2 s3 R% S+ S6 S6 }$ m# c
  1474.           exit 12 V' F2 W2 ^3 v# v$ j
  1475.         fi/ x' Y7 [: H- y
  1476.       else
    & C' y# u3 K9 b$ n
  1477.         Log "Copying MMaps files to installation directory" 0. `# `# a0 l2 N9 _( c
  1478.         cp -R "$GAMEPATH/mmaps" "$INSTPATH/bin"' ?" |, P+ J" s- ~9 E
  1479.       fi- P* w; _$ e, ?( @) Z
  1480.     else
    % G/ Z( Q5 h6 }7 B0 x
  1481.     Log "Copying MMaps extractor" 0
    * T$ {1 t% m' o  r1 `7 d
  1482.         rm -f "$GAMEPATH/MoveMapGen.sh"' g* {- n; A- O/ f
  1483.         cp "$INSTPATH/bin/tools/MoveMapGen.sh" "$GAMEPATH"2 T' T/ Q6 h# Q8 `
  1484.         cp "$INSTPATH/bin/tools/offmesh.txt" "$GAMEPATH", w0 [8 G0 R* C
  1485.         cp "$INSTPATH/bin/tools/mmap_excluded.txt" "$GAMEPATH"
    7 y7 ^" M) W, o
  1486.         cp "$INSTPATH/bin/tools/mmap-extractor" "$GAMEPATH"% M. B/ [5 y$ V4 \- \
  1487.     CPU=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Please provide the number of CPU to be used to generate MMaps (1-4)" \
    ( W) B5 A7 _- b! ^8 w
  1488.          --inputbox "Default: 1" 8 80 3>&2 2>&1 1>&3)' {" R0 o* o4 Y; Z
  1489. & o  z+ p7 T+ n' @8 p) g5 ]/ v2 a2 s1 H  G
  1490.         # User cancelled his choice, set default to 1.& o2 g+ Q: h/ O! e" B; O
  1491.         if [ $? -ne 0 ]; then
    - e4 m! h2 ~: p; C( D( ~
  1492.           Log "User selection was cancelled. Max CPU set to 1." 1, e/ f4 q# k+ G- Q/ N0 \
  1493.           CPU=1, Q, h9 u9 n* h# R2 C( Q
  1494.         fi: ~6 O2 j- E" s: n
  1495. 7 ~2 }! h( L0 |  Q
  1496.         if [ -z "$CPU" ]; then
    ( b. Q! o& o8 a
  1497.           Log "User didn't gave any value. Max CPU set to 1." 1
    ' u) B" }8 t# F- w, P: H
  1498.           CPU=1
    # z" v( W; m/ C( d9 j3 E2 o
  1499.         fi5 P! w4 ]% `4 L

  1500. 4 b& s0 [9 m* I% @. P
  1501.         if [ "$CPU" -lt 1 ] || [ "$CPU" -gt 4 ]; then7 M; y( B% W) q: _( {; K) a
  1502.           Log "User entered invalid value. Max CPU set to 1." 14 }* {' D, u0 b; s
  1503.           CPU=1$ e7 P9 r. x. T0 O, W4 U5 M
  1504.         fi0 z8 h* D# F5 L1 [
  1505. 1 N5 T( e4 O$ l# g1 G9 K- x) n
  1506.         Log "Extracting MMaps" 0
    + p8 I% L1 m) B, Z; V8 {
  1507.         cd $GAMEPATH$ r: V- V: o* o# e: F
  1508.         # Making sure we can execute the script, E6 ^6 b$ O. @# Q  X* E
  1509.         chmod 700 MoveMapGen.sh
    ) y" p8 n4 Z# [# q/ {" z2 f4 J
  1510.         ./MoveMapGen.sh $CPU6 q. p1 Y* s2 |3 t4 D

  1511. , B* I; s/ r# ~" l/ a
  1512.         if [ $? -eq 0 ]; then
    3 q' x+ _, x" P7 |. w
  1513.           Log "MMaps are extracted" 00 B6 ~, e$ ?9 S1 e3 j
  1514.           Log "Copying MMaps files to installation directory" 0
    $ Y: @5 e0 [  L/ b9 X
  1515.           cp -R "$GAMEPATH/mmaps" "$INSTPATH/bin"
    $ h  T  j9 `4 j- B& v
  1516.           rm -rf "$GAMEPATH/MoveMapGen.sh"
    9 k  [+ [4 A3 t6 ?7 s* l
  1517.           rm -rf "$GAMEPATH/offmesh.txt"' {+ y9 X7 L+ ?* S! X$ G' R/ b9 T. d
  1518.           rm -rf "$GAMEPATH/mmap_excluded.txt"8 A$ W8 {' }7 g. ?% q
  1519.           rm -rf "$GAMEPATH/mmap-extractor"
      J8 B  B' r) p" t0 t# Y4 \3 M$ q
  1520.           Log "Changing ownership of the extracted directories"
    9 [' q0 N2 m5 K1 @; b( Y
  1521.           chown -R $USER:$USER "$INSTPATH"
    ) E, D8 Z% {1 k, _; ~# R) ]6 _7 s
  1522.         else/ l& C8 r+ C- u1 c# ^* q4 ~+ R/ t
  1523.       Log "There was an issue while extracting MMaps!" 1
    7 `/ Y8 d+ `6 B+ R* X( c  X/ y
  1524.           rm -rf "$GAMEPATH/MoveMapGen.sh"; F- |9 R# S9 \+ k
  1525.           rm -rf "$GAMEPATH/mmaps", d# R. w4 K' ?) v
  1526.           rm -rf "$GAMEPATH/offmesh.txt"6 T8 W' i  i: }/ O  x' [
  1527.           rm -rf "$GAMEPATH/mmap_excluded.txt"
    ( O4 ^6 b; ^3 ~2 h* `
  1528.           rm -rf "$GAMEPATH/mmap-extractor"
    8 P4 l0 O  @4 D* x: ]
  1529.           exit 1$ M! a* g8 l% {
  1530.         fi
    ; Y7 r4 b3 e/ @0 A( ^1 p+ n( b
  1531.     fi. z. o1 R- \  x0 G5 m
  1532.   fi$ H$ r1 Z5 t3 D; U) ]. x0 z2 W" v
  1533. }
    + |: g, A, w5 y4 ]/ ^( R1 w

  1534. 6 H6 P+ @. j6 U9 {2 ^0 k1 }
  1535. # Function to create a Code::Blocks project
    8 S* K! b( {4 q
  1536. function CreateCBProject. s! F  M( v6 b2 C4 w
  1537. {
    / y+ c; r; G7 S  s& g
  1538.   # Create the dircetory if it does not exist3 m7 ^  U2 W! w9 H4 r/ n% |
  1539.   if [ ! -d $SRCPATH/server/linux ]; then
    ! v8 V6 Q! X2 P0 W% C
  1540.     mkdir $SRCPATH/server/linux  @% L3 V' s3 t4 B+ }8 F& G
  1541.   fi/ j1 C$ D6 C1 j" p* }, I  S" P

  1542. ! }7 ?, A* a, o& h* U3 U4 j! P
  1543.   # Now create the C::B project6 r" ?% v% `$ T9 V$ J7 g! Y; W4 w
  1544.   cd $SRCPATH/server/linux
    # W4 L* `9 d/ P$ D/ p+ o
  1545.   # make sure we are using the cmake3+ m+ I8 W9 e9 ?6 D9 v8 ?
  1546.   UseCmake38 B3 s  Q* E) r7 @
  1547.   $CMAKE_CMD .. -G "CodeBlocks - Unix Makefiles"7 Y. F9 d- k+ z1 ?3 R
  1548. }3 L/ {# w0 l$ A8 }7 Q7 Y8 V
  1549. # B- d3 M$ A  a

  1550. : ?. M) U8 n, v  `

  1551. * d+ N$ a6 @% t+ y
  1552. # Prepare the log
    9 k* y) e/ [1 C' f) w
  1553. Log "+------------------------------------------------------------------------------+" 02 K) [% R$ q. o" L+ u! Y
  1554. Log "| MaNGOS Configuration Script                                                  |" 0; ?1 f+ h" r! C! u2 d
  1555. Log "| Written By: Ryan Ashley                                                      |" 0
    + c* N6 O( c& H& a
  1556. Log "| Updated By: Cedric Servais                                                   |" 06 {. Y* k6 V6 R) S1 {
  1557. Log "+------------------------------------------------------------------------------+" 0) H# n, R9 \- s; S/ s
  1558. & R' N* F9 ^4 j/ @
  1559. # Check if user who is running this is root- C* b  y1 q, L% I: f/ N
  1560. CheckRoot
    4 {) A+ p) v2 U# c

  1561. 3 h  b* R2 a  s6 o; o. K: [- d
  1562. # Select which dialog to use
    8 X- y9 D- G- u3 O
  1563. UseDialog
    , y% l; x' Q/ d4 z$ w' i- Q5 B9 r

  1564. " |. ?8 W9 f' K  a  D( ~$ U* i
  1565. # Select which activities to do
    ) ~( @& h! t/ F# k. u7 U
  1566. TASKS=$($DLGAPP --backtitle "MaNGOS Linux Build Configuration" --title "Select Tasks" \8 j) F' O! i1 @9 c
  1567.   --checklist "Please select the tasks to perform" 0 70 8 \7 X2 E( F" D' y. ?+ G
  1568.   1 "Install Prerequisites" On \
    - r' u* M% ?; o  n4 L: g8 C1 h& _
  1569.   2 "Set Download And Install Paths" On \0 U, K, _. B$ C5 o( X8 B  Q4 G
  1570.   3 "Clone Source Repositories" On \7 s$ U) w& u$ s9 T
  1571.   4 "Build MaNGOS" On \, W7 i+ a% x$ @" b/ h( w
  1572.   5 "Install MaNGOS" On \6 ~  `- m9 [2 T& Z
  1573.   6 "Install Databases" On \  ^. Q: x4 N/ c2 x+ c3 ]6 f' |4 \
  1574.   7 "Extract Resources" On \/ v; c6 ~7 G, m, d7 T* e4 ?
  1575.   8 "Create Code::Blocks Project File" Off \
      H5 F7 C5 {# T$ L/ L
  1576.   3>&2 2>&1 1>&3)( X. s3 C4 {% B

  1577. * I) A8 P2 f- a6 C
  1578. # Verify that the options were selected, g7 b1 z, N$ U
  1579. if [ $? -ne 0 ]; then
    & B% M& G) u9 E4 E# l' h2 _
  1580.   Log "All operations cancelled. Exiting." 15 j. z+ a+ l% z4 U0 H/ K( g
  1581.   exit 0
    . o4 q( \) k2 C1 B1 b( p( n
  1582. fi" F; R9 B' Z3 l# |- Q$ A8 y0 A

  1583. % D$ R5 _/ c" y! z. r+ Z: z
  1584. # Install prerequisites?
    2 A! z7 \& V) A$ f2 J. w
  1585. if [[ $TASKS == *1* ]]; then
    . j* \1 f$ p7 p$ X% }: P1 \) E* O
  1586.   GetPrerequisites
    . _/ f$ z- L5 [0 S4 X
  1587. fi
    ( J2 U( y+ {8 r# k" w

  1588. 6 H5 g+ U' `1 ^3 J1 K4 J
  1589. # Select release and set paths?6 _7 h3 E* k. l+ u. `, Y
  1590. if [[ $TASKS == *2* ]] || [[ $TASKS == *3* ]] || [[ $TASKS == *4* ]] || [[ $TASKS == *5* ]] || [[ $TASKS == *7* ]]; then
    ( O" S" S% D" A0 d2 D  z) D- P
  1591.   GetUser7 n9 D5 F8 E% r; \0 L
  1592.   GetRelease
    8 f$ m6 c: ?7 G: z! w1 w
  1593. fi4 ^* N" w( Q# X7 p5 S: t5 a0 G2 f

  1594. ; v. B0 L" H0 m
  1595. if [[ $TASKS == *2* ]] || [[ $TASKS == *3* ]] || [[ $TASKS == *4* ]] || [[ $TASKS == *5* ]] || [[ $TASKS == *6* ]] || [[ $TASKS == *7* ]]; then, @4 B- c8 o0 K/ X9 {! Y
  1596.   GetPaths. y% q/ Q  T& D2 s
  1597. fi# r+ `2 [( U% ]+ ]0 X3 r

  1598. , d, p, x1 K+ v% t- _
  1599. # Clone repos?
    + j+ L7 L* ]$ _& X0 x, {
  1600. if [[ $TASKS == *3* ]]; then& o" n, O5 h& S& |2 S* c
  1601.   GetMangos3 w9 D9 q5 T+ a+ J$ A
  1602. fi
    ' y: I4 z. ~- S7 x6 x- n& D: I

  1603. / h7 }3 \9 H  Z; W" K' D: @4 w
  1604. # Build MaNGOS?
    5 d1 g7 c3 h0 A% L
  1605. if [[ $TASKS == *4* ]]; then
    5 U) K2 J' p3 q- F
  1606.   GetBuildOptions
    ) e& W0 z4 _- B; V
  1607.   BuildMaNGOS
    ' W2 B# }8 T& `6 z
  1608. fi
    ' k0 z  n' p7 u
  1609. * X5 D1 z/ Y2 x$ Q' \% A, P
  1610. # Install MaNGOS?1 H7 v2 K0 t9 |6 G/ z
  1611. if [[ $TASKS == *5* ]]; then1 [& Q% ~9 y: x- x" h7 d* l" E
  1612.   InstallMaNGOS
    % s! U/ z7 L& y1 M+ w" w
  1613. fi
    3 I- Q' @1 S: a8 I/ Q, T7 A
  1614. 4 T2 S! Q+ D! K9 C1 D1 i- t
  1615. # Install databases?1 t5 @- ?/ \- A9 J! R
  1616. if [[ $TASKS == *6* ]]; then* ~) a8 B9 T6 n/ {
  1617.   HandleDatabases8 i' r2 x) \7 h; e6 `# l9 h8 u
  1618. fi& [/ [$ q- w& B3 ^" _5 c: [7 n

  1619. ; a9 R' Z3 Y+ n9 ?) h$ l7 G' X
  1620. # Extract resources from the game?
    9 n: d4 Z/ Z, l  u6 e+ A6 C. K
  1621. if [[ $TASKS == *7* ]]; then
    - Q( @9 W% t. V
  1622.   ExtractResources0 e( g* \7 e$ M! ]- c$ Y9 d5 I
  1623. fi
    " x9 ~# ^) A8 J* @4 O/ Q
  1624. , |+ X: e6 q1 e8 b/ m
  1625. # Create C::B project?" L, m3 q9 F" r$ j( q
  1626. if [[ $TASKS == *8* ]]; then
    8 i# u  ~$ f& }9 B+ X% r0 {9 a' u
  1627.   CreateCBProject
    8 b. K8 o+ K; u8 o( J2 v
  1628. fi2 h) j  N9 F! K$ k( F7 J
  1629. 7 L$ ]; d( w# l( H& {$ R" N0 k
  1630. # If one of these actions has been performed, then we know the user.4 F! J+ j% x3 e  B. k0 e: M
  1631. if [[ $TASKS == *2* ]] || [[ $TASKS == *3* ]] || [[ $TASKS == *4* ]] || [[ $TASKS == *5* ]] || [[ $TASKS == *7* ]]; then9 {* k3 V( [& F, e5 [* R$ L$ R  @
  1632.   Log "Changing ownership of the extracted directories" 1+ Y3 o3 a/ e9 V5 K
  1633.   chown -R $USER:$USER "$INSTPATH"! e* s6 q, U9 k. _/ f
  1634. fi% I7 I  L& e% Y) Q

  1635.   H3 q! d" h, {  @$ K' |* R1 m, B
  1636. # Display the end message# c& {9 Q7 ~8 a  H$ I7 G# m
  1637. echo/ J( V7 F) C' G& t8 O
  1638. echo "================================================================================"
    / S8 M; ^' B: l5 ^
  1639. echo "The selected tasks have been completed. If you built or installed Mangos, please"
    / k6 k7 O& X: N+ e& _& D
  1640. echo "edit your configuration files to use the database you configured for your MaNGOS"& P3 x9 b* f5 e# k- ~
  1641. echo "server. If you have not configured your databases yet, please do so before"
    $ O% B) ]6 S' n  z* f  l
  1642. echo "starting your server for the first time."
    , _) }- ~0 K) b/ L
  1643. echo "================================================================================"
    3 e6 r: f1 P$ Z" v9 S4 W" v
  1644. exit 0
复制代码
  1. wget -c https://raw.githubusercontent.com/mangostwo/database/master/InstallDatabases.sh && bash InstallDatabases.sh
复制代码
  1. #!/bin/sh
      y0 ~2 E3 W+ U9 E  E' C
  2. ##############################################################################
    ; W  O4 j5 U9 P4 F8 u' n
  3. # This utility assist you in setting up your mangos database.                #
    . f: T) L) x7 i7 m
  4. # This is a port of InstallDatabases.bat written by Antz for Windows         #6 w: p4 @8 N( G
  5. #                                                                            #
    & A1 _% n. H, R2 z
  6. ##############################################################################( W3 @0 c3 @+ ]
  7. " \6 F; z2 k; N8 S/ @4 M7 I1 p3 v
  8. OLDRELEASE="Rel21"4 x% D2 t! p) h  v" [  U& C, J
  9. RELEASE="Rel22"
    - d$ g: c5 L/ v& m, D
  10. DUMP="NO"2 ^# S, [' c, v7 h

  11. ( z6 C0 A1 q7 E  k* D2 }( A6 s
  12. dbname="". V7 @7 t: f  X- P- ?' p# C
  13. dbcommand=""
    : g6 `, ?# G: A* w/ S  V! F
  14. : m+ r% d' S6 b5 |/ d# a
  15. createcharDB="YES", I9 s8 S* }( e0 Z
  16. createworldDB="YES"
      [7 j; Z" X/ h: ^: M' |3 o: U! p+ A
  17. createrealmDB="YES"
    7 Z2 p' d# w$ @% z

  18. ( U4 J6 U8 I! v6 C& P
  19. loadcharDB="YES"
    ) R- R' I$ `. H% p6 O5 y
  20. loadworldDB="YES"
    9 I1 ~  m& \' U% |' p+ H' p2 D
  21. loadrealmDB="YES"
    % N" g! q, L7 H4 \7 B
  22. dbType="POPULATED"
    % h' P* {! g& E- w# S7 R
  23. 1 W" }$ ?: _, O8 }5 ?
  24. updatecharDB="YES"8 f5 g& n4 \( P7 t1 }
  25. updateworldDB="YES"2 B& T; d9 K( B1 e6 i4 n$ L
  26. updaterealmDB="YES"
      `& b$ V* C2 z4 C
  27. * E9 V! T; Q3 n# Z' V; O
  28. addRealmList="YES"
    4 b& G' p; q% M: [6 ^' S
  29. # D7 |" U" C5 [! S
  30. svr_def="localhost"
    - _' m* S2 W( E4 A
  31. user_def="mangos"- E5 n  F2 x+ J5 E  p) g
  32. pass_def="mangos"+ [2 K* K9 |0 t* ^! y" k7 n
  33. port_def="3306"
    5 h/ v# w0 l+ s; V
  34. wdb_def="mangos2"5 x+ l* a  n' }. m+ X4 }
  35. cdb_def="character2"
    ! C- K* N( U: ], S* w
  36. rdb_def="realmd"- H' U; p1 H$ {, }& S
  37. 7 H+ F! F( |  N
  38. printHelp(), e4 q! H7 n0 o
  39. {8 D( u4 e& _0 r$ n
  40.         printf "Usage: $0 [-s] [-u] [-d] [-h]\n"
      s3 _7 W5 V- i" c* n  f7 L% o
  41.         printf "\t-s: Run this script in silent mode, only prompt for the database information\n"
    0 \# j0 j& }* X) B7 O, Q$ y
  42.         printf "\t-u: Run only the updates of the database\n"
    " H9 O- G) V$ o/ t+ X$ X+ b! D
  43.         printf "\t-d: Dump the database configuration into the home directory of the user\n"# [5 v. ?$ @7 @" A" d4 D5 V
  44.         printf "\t-h: Display this help\n"
    & d5 j# a3 G& Y5 c1 `
  45. }
    " t# w- r0 p/ M( u" H2 u

  46. 0 {( H# U. N( y) @9 q- W
  47. printBanner()
    & t% L4 z- O- V/ v, l
  48. {
    ) K1 W5 k2 F- ]$ ]4 P2 D
  49.         clear
    5 v. X: q0 }9 I4 r
  50.         printf " #     #     #    #   #  ###   ###   ####  \n"( `; k" E; b# J- X" m* D' A& }2 q1 n
  51.         printf " ##   ##    # #   ##  # #     #   # #      \n". Z) d+ \# H8 P8 j4 x
  52.         printf " # # # #   #   #  # # # # ### #   #  ###   \n"/ Q8 h( d2 ?5 c7 ?6 f9 t& p. Z
  53.         printf " #  #  #  ####### #  ## #   # #   #     #  \n"# b- M' m& D) H5 i! O& q
  54.         printf " #     #  #     # #   #  ###   ###  ####   \n"6 m. I' O! R5 o/ h; ]- A
  55.         printf "\n") m+ I9 X- G7 H, _, W$ W+ r
  56.         printf " Database Setup and World Loader v0.03         \n"
    : W/ i5 Z) {0 {  ?
  57.         printf " ---------------------------------------------- \n"" x/ v4 t( o' t4 h5 K, Q
  58.         printf "  Website / Forum / Wiki : https://getmangos.eu \n"
    4 x8 e, i; Q" W. S1 f
  59.         printf " ---------------------------------------------- \n"
    / u: h3 I% s+ }; g! g  H
  60.         printf "\n"" P- F0 a1 Z4 O  w: j/ B
  61.         printf "\n"6 S: P, [" l4 x+ _
  62. }
      d; z( d8 g0 b

  63. , O( g3 _  n) {9 H
  64. printActivities()( {! P& ^- z. F: _8 ^  y( z  w0 P
  65. {
    ' `( j* P4 P- \
  66.         printf "\tCharacter Database : \tV - Toggle Create DB (${createcharDB})        \n"
    9 ~% }2 z6 E" }: G$ \; o
  67.         printf "\t\t\t\tC - Toggle Create Structure (${loadcharDB}) \n"
    " m2 U6 t" n  n8 S
  68.         printf "\t\t\t\tB - Apply Character DB updates (${updatecharDB})\n"" V+ z0 I- g% F
  69.         printf "\n"
    & o! H! C3 u. d
  70.         printf "\t    World Database : \tE - Toggle Create DB (${createworldDB}) \n"% D0 e, B9 }! x  Q
  71.         printf "\t\t\t\tW - Toggle Create Structure (${loadworldDB}) \n"        0 R. P2 U) U  [3 S
  72.         if [ "${loadworldDB}" = "YES" ]; then$ \. I; v% B9 D' H0 E* j
  73.                 printf "\t\t\t\tD - Toggle World Type (${dbType})\n"
    ( E4 e) h; Q9 ^: f5 B
  74.         fi( r: S* r/ u5 ?
  75.         printf "\t\t\t\tU - Apply World DB updates (${updateworldDB})\n"' F+ ^; l# I3 X1 v( B# C0 ]
  76.         printf "\n"
    ! b2 Q/ B% z( b0 S; H7 T8 z
  77.         printf "\t    Realm Database : \tT - Toggle Create DB (${createrealmDB})\n"& c6 X: I4 s5 Q: D. h
  78.         printf "\t\t\t\tR - Toggle Create Structure (${loadrealmDB})\n"* K2 \3 I) w# {) B
  79.         printf "\t\t\t\tY - Apply Realm DB updates (${updaterealmDB})\n"
    6 K" c# ]& g+ ?" J! s, Z8 i  `
  80.         printf "\t\t\t\tL - Toggle Add RealmList Entry (${addRealmList})\n"       
    8 @# F; I  F5 N* e: }- S" I: w7 J& `
  81.         printf "\n"
    ( l# Q# k: A5 |2 T
  82.         printf "\t\t\t\tN - Next Step\n", v" I6 c) f/ E' l
  83.         printf "\t\t\t\tX - Exit\n"3 w2 S  u! t8 F" c& Y" U) Q
  84. }
    6 d1 }$ G# l& G5 R5 [

  85.   L* N& b7 u/ t, a
  86. determineDBName(); b/ I$ P' F) i
  87. {4 ]1 M3 k, `) p4 R: L& Y
  88.         if [ $(which mariadb) ]; then
    3 |4 |9 T9 R: h! G! b9 Y5 d/ i
  89.                 printf "MariaDB found.\n"1 }& ~: ?; [( [; @
  90.                 dbname="MariaDB"1 R& T  p; @) Z! ~7 H3 d- t" G
  91.         elif [ $(which mysql) ]; then, ?8 F( I; f6 @  L4 F( D
  92.                 printf "MySQL found.\n"5 C: _7 U+ W+ {% h% I' E
  93.                 dbname="MySQL": y$ O& @& g- @+ ]
  94.         else& H8 K& k" J  N+ S
  95.                 printf "Did not find mariadb or mysql.\n"
    . I' K+ B) Z( \# F9 G# Y& Z
  96.         fi) U9 r; h* y: L+ ~7 ]
  97. }
    9 B$ K, |& ~! S- j

  98. * E7 t. V" s! j0 ?! g+ K6 I, P
  99. mysqlconfigeditor()+ O5 B3 U8 t. m2 J( |5 W( H
  100. {
      U( M" Q5 s& P6 o
  101.         dbconfig="mysql_config_editor set --login-path=local --host=${svr} --port=${port} --user=${user} --password --skip-warn", E) l; x# d2 H9 e8 e
  102. }& L* |' Q1 o( s/ n. e5 H' }8 B2 n

  103. : C0 e! \. s! Q! t( B; Y
  104. determineDBCommand()+ N5 v4 o# j4 `4 ?& J1 _" [
  105. {5 F4 f; a) w3 C% L# U4 x
  106.         if [ $dbname = "MariaDB" ]; then
    7 b, o( b* X0 a9 W" i* y
  107.                 dbcommand="mariadb -h ${svr} -u ${user} -p${pass} -q -s"" H" |7 U- M4 Q! p/ ]
  108.         elif [ $dbname = "MySQL" ]; then0 M: }6 p4 r" T, x
  109.                 dbcommand="mysql --login-path=local -q -s"
    5 ?( H4 l2 C: {/ S! b5 }$ W, J
  110.         else
    - N: C0 s+ }3 g
  111.                 printf "Did not find mariadb or mysql.\n"8 g6 ^5 f3 d' t3 l/ O+ X4 i
  112.         fi: f6 P) b/ k9 R8 T
  113. }
    & b4 g; E. s7 a' B: @& ?$ @
  114. 3 P) q6 ?' f! w9 }9 ~
  115. createCharDB()9 u/ a( X/ h& K% [7 d# }+ }
  116. {; n% ?# ^7 `& j5 a
  117.         printf "Creating Character database ${cdb}\n"
    ; p  C% y" d' p- r
  118.         $(${dbcommand} -e "Create database ${cdb}")3 t2 r- X& j/ J7 C- U0 h
  119. ! m0 n4 |9 c* U: K$ Z0 @5 x( l
  120.         if [ "${loadcharDB}" = "YES" ]; then
    % f  T; k! g. `
  121.                 loadCharDB) l( l3 c( s: N, J: \9 |: @* k
  122.         fi- g7 }2 Z, S+ J
  123. }
    9 @% D, Y: }; {$ l7 x
  124. ! q, S/ `6 A. A# W5 x+ c
  125. loadCharDB()
    * b0 R, z, E9 ^+ N3 ]
  126. {
    1 j+ Y) {* `) N  N9 T! F! l$ e! T
  127.         printf "Loading data into character database ${cdb}\n"
    & e, Q. k5 O4 A  ?5 S' h
  128.         $(${dbcommand} ${cdb} < Character/Setup/characterLoadDB.sql)" Y6 L1 J' C. e1 w( s3 L5 P# ~

  129. 8 y& |6 K" ]; m9 Z
  130.         if [ "${updatecharDB}" = "YES" ]; then1 ~! W/ z9 M6 l+ g2 f
  131.                 updateCharDB3 U9 ?/ L8 U1 `( |. Z( O8 i
  132.         fi
    ! z6 b7 `& j/ }8 Y
  133. }
    / C. s7 q: D3 l& m

  134.   U: b2 ?; _8 x0 @2 M
  135. updateCharDB()5 f" Q( u: G: H, }& P
  136. {
    6 a6 D: ]# u; Q
  137.         printf "Updating data into the character database ${cdb}\n"" t7 L, e. x. d! V
  138.         for file in $(ls Character/Updates/${OLDRELEASE}/*.sql | tr ' ' '|' | tr '\n' ' ')
    ( J6 T5 z& ]. W. b3 {9 [# b
  139.         do; H* E; T6 V$ v& R& I+ E9 `4 F
  140.                 file=$(echo ${file} | tr '|' ' ')' k# X; g) [! m& J5 p7 V/ X
  141.                 printf "Applying update ${file}\n"8 J3 y$ C2 L- {2 \. n" q
  142.                 ${dbcommand} "${cdb}" < "${file}"+ Q! R1 B! W4 `1 L, R
  143.                 printf "File ${file} imported\n", `) o( a0 c8 _( j0 N2 c3 B
  144.         done% O$ ?9 B8 ~5 O( y! L# M1 P$ t6 O# s

  145. 6 }2 K5 S9 _9 f  f$ A; ?8 g
  146.         for file in $(ls Character/Updates/${RELEASE}/*.sql | tr ' ' '|' | tr '\n' ' ')
    " p4 \: U' W( ~
  147.         do' {% a7 S, \0 t
  148.                 file=$(echo ${file} | tr '|' ' ')1 A. K$ K/ E0 f; c0 N9 x; C; T
  149.                 printf "Applying update ${file}\n"
    9 P; E8 r' p( W; b% D$ \& S
  150.                 ${dbcommand} "${cdb}" < "${file}"4 r7 ]- R4 w) j
  151.                 printf "File ${file} imported\n": Y1 A- k( t/ c; S- `5 _$ F8 v9 B9 H
  152.         done
    , L0 f1 Z* Y( w9 [- W' e- K
  153. }) o( J  u/ f8 \* M7 X# V$ d
  154. - ?9 j: P3 y6 ], l
  155. createWorldDB()
    ! [5 V: e1 q, r/ n% s$ H9 y' I
  156. {
    9 M& |1 H4 B; A8 o
  157.         printf "Creating World database ${wdb}\n"
    ( J. G/ B) @: M8 M9 j# K: j
  158.         $(${dbcommand} -e "Create database ${wdb}")
    . e" B) T! F- v3 }+ J7 `  k
  159. 3 V% A7 f; b& m- N$ {
  160.         if [ "${loadworldDB}" = "YES" ]; then
    . t* E, @! L( X  \
  161.                 loadWorldDB
    2 ^2 {& M5 t& d0 ~
  162.         fi  h9 M' S6 Q( w( t2 t) W& F) \! _% [
  163. }
      C" v4 ?" d  s( p6 q' o- G
  164. 0 `7 ?7 r' q/ g7 {$ N; V
  165. loadWorldDB()
    * p8 O' W2 E2 J. R. R
  166. {
    2 `2 T. X# u  P. F+ t
  167.         printf "Loading data into world database ${wdb}\n"8 O/ l  Q- L7 F8 `
  168.         $(${dbcommand} ${wdb} < World/Setup/mangosdLoadDB.sql)8 L( C1 k7 `! o$ E6 [4 C3 k

  169. 4 O! t9 X$ W& u" a& G9 ?0 R3 f
  170.         if [ "${dbType}" = "POPULATED" ]; then
    + T5 M! {, p! w: V, e. ~9 ~
  171.                 populateWorldDB
    7 X+ w( h& r) s0 H) l7 K/ n7 T' c
  172.         fi0 e0 C) J0 ?3 ?/ v, U! w
  173. }5 |; a7 e; g# q) |

  174. 3 C  |3 g/ C( l) y% o) Y
  175. populateWorldDB()
    . O; P  f$ Q9 s+ J
  176. {) ?/ _' K( Y" n% @$ ^0 W
  177.         printf "Importing World database ${wdb}\n", N- \# k% ~3 Q; p" k
  178.         for file in $(ls World/Setup/FullDB/${OLDRELEASE}/*.sql | tr ' ' '|' | tr '\n' ' ') & e* i/ m6 i! A( W
  179.         do) @* v  u+ x1 ^9 i) W0 v8 s
  180.                 file=$(echo ${file} | tr '|' ' ')+ n3 E3 A* |0 {
  181.                 printf "Importing file ${file}\n"
    , Z: G* y+ f/ s' z% C
  182.                 $(${dbcommand} ${wdb} < ${file})
    ! _. x4 m) G" K7 s
  183.                 printf "File ${file} imported\n"
    ( q. l% v/ t3 n$ c. W$ a
  184.         done
    * I1 _3 Y  |- T" C
  185. ; x/ O+ O$ I" B% h8 d: c
  186.         for file in $(ls World/Setup/FullDB/*.sql | tr ' ' '|' | tr '\n' ' ')
    ' i3 z4 k& w: x, A8 \6 b7 M% s  \
  187.         do' c) H+ \& q8 v$ d4 K
  188.                 file=$(echo ${file} | tr '|' ' ')1 c, S* X9 m! r, v8 k9 V7 b# j
  189.                 printf "Importing file ${file}\n"
    5 l5 `8 m0 s% o* r
  190.                 $(${dbcommand} ${wdb} < ${file})
    # i4 U# j# J0 i9 @* Z1 E  j
  191.                 printf "File ${file} imported\n"
    ) e4 B6 i) J3 X2 M
  192.         done
    5 h" c- f' v2 `2 E3 V2 G
  193. }( Z0 d7 I# H6 ^4 V& G8 B
  194. 0 j4 k) x* S. e9 n) v2 r: X9 M
  195. updateWorldDB()
    - a& Q1 C9 e1 P
  196. {
    ' b" ~8 M% h5 g! i; C6 {
  197.     printf "Updating data into the World database ${wdb}\n"2 b8 o% R, q2 t$ r
  198.     for file in World/Updates/${OLDRELEASE}/*.sql- B+ C& @: l5 m- |
  199.     do
    : k" L. E" K! E/ O3 P6 S1 K! ?' G) K
  200.         printf "Applying update ${file}\n"% h+ T" |) X! C) V
  201.         ${dbcommand} "${wdb}" < "${file}"* o- C* _* G$ d9 i) E
  202.         printf "File ${file} imported\n"# T' X/ b7 m3 a6 w, p2 D/ z) S9 E
  203.     done
    1 C, o* ^' P/ i9 ^# D
  204. 6 T- A, o4 q0 L( b- Z
  205.     for file in World/Updates/${RELEASE}/*.sql- [) N3 A- j' M+ m9 b$ {
  206.     do
    $ H, s6 q  G4 o, q9 k4 `5 i# w
  207.         printf "Applying update ${file}\n"
    / l9 z0 {5 p7 |* n: o
  208.         ${dbcommand} "${wdb}" < "${file}"
    : j/ M! G/ @$ H
  209.         printf "File ${file} imported\n"+ D$ E) {! b8 M+ n6 D
  210.     done
    0 q6 e: p* B5 w) E; c
  211. }
    0 Q/ s- U# z! V2 T1 U

  212. 7 h: l" A' Q) j( X' R% t
  213. createRealmDB()% g( ?8 J; f% W4 O& [- L
  214. {) w) c' m) U. q' D
  215.         printf "Creating realm database ${rdb}\n"! d, O& C, s( @+ m3 h+ A: M0 e
  216.         $(${dbcommand} -e "Create database ${rdb}")
    $ F" F# j. [+ s0 c* A- ?

  217. & d4 K, C  u" a$ v4 Y
  218.         if [ "${loadrealmDB}" = "YES" ]; then
    , C7 G2 L1 H. o
  219.                 loadRealmDB0 F0 {2 v6 @: w5 i) _5 p
  220.         fi
    ( C! y7 d* k( c8 w6 k  |  `
  221. }
    5 [3 l9 e8 {/ ]& G" v6 M/ s8 }
  222. 7 R1 w4 f8 S* P' ?% @
  223. loadRealmDB()+ l+ V0 X7 w7 T% O
  224. {
    ! W2 }' N/ @8 h
  225.         printf "Loading data into realm database ${rdb}\n"       
    $ E! J% s  D' @7 n: m7 u
  226.         $(${dbcommand} ${rdb} < Realm/Setup/realmdLoadDB.sql)* {" a# \7 Y# _" f
  227. }; o0 d3 L6 k! ^! q/ v. r9 T- y& K; U/ e

  228. 6 T9 M& b6 d9 P6 H' U0 O3 R
  229. updateRealmDB()! u6 E+ [0 J, n/ R  t9 N. E
  230. {
    ' [4 Z: e2 e) i
  231.         printf "Updating data into the Realm database ${rdb}\n"- \) Q& l4 }- h6 D2 I% S
  232.         for file in $(ls Realm/Updates/${OLDRELEASE}/*.sql | tr ' ' '|' | tr '\n' ' ')
      ^6 c% v: o2 k- W! q
  233.         do
    1 t' b3 U9 m8 V8 H
  234.                 file=$(echo ${file} | tr '|' ' ')& t1 O4 `, O* A0 y7 ^) ]9 D/ m$ N
  235.                 printf "Applying update ${file}\n"8 ]& W$ T+ ?7 P$ A9 h# {% k
  236.                 $(${dbcommand} ${rdb} < ${file})
    4 f9 C6 u6 V6 T; A2 U; m% {% O
  237.                 printf "File ${file} imported\n"
    , [6 u7 u) @/ |/ y) y9 o9 {& P+ g* H
  238.         done3 y" i" }7 K" k, u9 m  d& t
  239. # ?8 n" J% z* |1 I- f
  240.         for file in $(ls Realm/Updates/${RELEASE}/*.sql | tr ' ' '|' | tr '\n' ' ')
    * V8 E! e" R8 j" H$ e7 W
  241.         do' H$ V, {4 S7 n
  242.                 file=$(echo ${file} | tr '|' ' ')
    3 u/ |; W) n" j3 k& q& T
  243.                 printf "Applying update ${file}\n"
      J8 o- b( @& m
  244.                 $(${dbcommand} ${rdb} < ${file})
    9 N$ q# V  n3 J% v
  245.                 printf "File ${file} imported\n"& r' u7 ]' A- w9 {* I! s
  246.         done) s2 n- e; t) a# P! i( D0 _- m
  247. }
    5 O3 l6 ~1 r) I. D1 V  u
  248. 4 V0 F5 Q- b& K$ X9 {
  249. addRealmList()7 T* @% A$ P: Z1 P0 O6 P5 g1 e
  250. {
    5 }. s# i4 X9 D
  251.         printf "Adding realm list entries\n"
    + I7 i$ E' p/ k) w. C
  252.         $(${dbcommand} ${rdb} < Tools/updateRealm.sql)' v  D3 x6 z6 D6 ]
  253. }
    * X  d- d' k# I$ }$ m8 l
  254. + n; b3 \! J. g, w: j
  255. activity=""6 l  _2 i& ]/ j7 C: k/ e

  256. 9 B( s7 e5 {% I- L, S3 Q
  257. while getopts "suh" o; do
    5 h  g; _6 m/ ~' n- J9 y
  258.         case "${o}" in
    / J, V# j; g7 ^" ?" D2 D
  259.                 s)- V- m! b0 v5 L* j
  260.                         activity="N"% g" y' h7 r0 n1 d
  261.                         printf "You selected silent mode\n"
    3 }- G: v4 S" R" S3 k) ~& L
  262.                         ;;
    8 s! M/ |' Z6 K7 @
  263.                 u)
    % B2 P0 Y3 P, R. q9 w& T' j) r; m' R
  264.                         createcharDB="NO"
    6 d; _, f' n! q; S+ M+ ^: Q
  265.                         createworldDB="NO"
    / m7 _2 D6 C0 c% A3 g  y  c) O$ w3 @
  266.                         createrealmDB="NO"& C  G( _4 r% [
  267. 2 P6 v7 j* P+ }4 `
  268.                         loadcharDB="NO"( E9 u, D  J+ \2 t' `3 S. T
  269.                         loadworldDB="NO"
    + R: |& a+ x" `
  270.                         loadrealmDB="NO"( d, Z! S/ _9 y3 C
  271.                         dbType="EMPTY"+ t. m8 M; m8 x$ ^: y
  272.                         printf "You selected update only\n"
    $ h! }: x& z  o* w7 v' A* {6 _0 X
  273.                         ;;: \9 }3 v& P% O. P1 v
  274.                 d)
    ; @5 s+ s' F' [  w2 c5 ]' [7 f" o" w
  275.                         DUMP="YES"2 U, G2 U) B1 ^8 E
  276.                         ;;
    ! A* }0 L6 H1 M+ I
  277.                 h): ?+ |- T* C; D0 ]
  278.                         printHelp
    * d& f( r4 j, i
  279.                         exit 0- C6 U; g; M2 C* \2 r! ?
  280.                         ;;
    ; p( z9 |. k( _/ i; S
  281.         esac0 M: Q8 P$ k# }! A+ \/ Q$ l& j: b
  282. done
    3 J* ?# l  y2 r/ m/ _

  283. , r% `9 {& }1 X3 g! i5 `
  284. while [ -z "${activity}" ] || [ "${activity}" != "N" ]
    ) @6 @# `0 T. ~
  285. do# _4 n' {% b7 d3 B. H  C
  286.         printBanner; h% i7 l, \- |
  287.         printActivities! b" M$ ~: u7 f4 Y
  288.         printf "Please select an activity : "
    / B( A1 p7 m9 T4 J' c. c( w
  289.         read activity
    1 }& D$ P) p( T( x) l9 L5 e2 `& a9 V9 [
  290.         activity=$(echo ${activity} | tr '[:lower:]' '[:upper:]' )  H8 W: O8 q$ i. p; D* a
  291.         case ${activity} in$ L' w$ u, h4 p" V$ r
  292.                 "V")$ [' K6 S9 n6 x
  293.                         if [ "${createcharDB}" = "YES" ]; then
    0 H4 `+ B* O4 |4 d3 j6 K. k
  294.                                 createcharDB="NO"
    - S6 w* ~* y! y. V0 S" Z; i' g1 U
  295.                         else 2 m& F  s% t3 B  I- v
  296.                                 createcharDB="YES"2 S$ G1 P9 {5 ^
  297.                         fi
    ( q+ V! @# B' F9 w" `
  298.                         ;;2 v# z/ K/ a' e/ O) h& q) z
  299.                 "C")9 @5 w' {0 j6 j# ?0 @9 t
  300.                         if [ "${loadcharDB}" = "YES" ]; then; |# \( v8 v. x% K9 j% M
  301.                                 loadcharDB="NO"  p6 V$ [$ |: N( Y( }. P# M
  302.                         else 3 ]1 C) u5 |% K' w( g' a" @
  303.                                 loadcharDB="YES"1 F9 d& W3 l, `: i
  304.                         fi2 N$ i8 K. v5 T3 O- g+ C. k0 ^
  305.                         ;;$ D; Z, F  H) I; Q6 ?; i# ?
  306.                 "B")
    ' {2 i+ Z" b  O- T, m. T) H3 a
  307.                         if [ "${updatecharDB}" = "YES" ]; then2 `& k9 s( S: S
  308.                                 updatecharDB="NO"! Q5 i" |3 h' S. K! u
  309.                         else + V; h8 [( E1 P/ |
  310.                                 updatecharDB="YES"3 y' |& @5 @* M8 J8 w  E& z2 g
  311.                         fi
    7 P% s, q4 O& I' S
  312.                         ;;* P* Y3 t0 a' B, }2 D! q: T4 u
  313.                 "E")/ ]# J+ q0 i7 j3 M: f
  314.                         if [ "${createworldDB}" = "YES" ]; then
    : g& l; r# u: r
  315.                                 createworldDB="NO"# f$ Q3 A/ S4 w  R3 C2 I% N3 T  L  g
  316.                         else % C3 p# e7 Y7 g0 Z9 K
  317.                                 createworldDB="YES": I' m. ~2 I/ a% p& y/ }
  318.                         fi        7 L9 n# ]; u6 r
  319.                         ;;/ R2 k9 N& y# c$ A; z$ n
  320.                 "W")5 Q" Q2 V3 S$ E8 }9 u; _2 C
  321.                         if [ "${loadworldDB}" = "YES" ]; then
    $ M+ `- l% |- ?* d/ @2 H" a+ V
  322.                                 loadworldDB="NO"
    7 p* c' L$ U1 A3 _5 X  C
  323.                         else
    $ `0 e% K; h7 z8 ^
  324.                                 loadworldDB="YES"1 m- N& M( m* C. S3 `: _& A
  325.                         fi        / N9 z' n+ A* f! ]
  326.                         ;;
    ( g+ \7 x9 u: y. y1 O* w4 O
  327.                 "D")- J% x: x, o4 U# Y
  328.                         if [ "${dbType}" = "POPULATED" ]; then3 ?! o3 E3 [0 p' K( B
  329.                                 dbType="EMPTY": X3 |/ N$ |* e1 V
  330.                         else 9 i8 P  |/ z& Z# t  k
  331.                                 dbType="POPULATED"5 J) O* T$ y  m& i2 A2 y
  332.                         fi                                 4 {8 z  I+ G5 a" i7 D& Y
  333.                         ;;2 X8 U; F5 b, k9 a. {
  334.                 "U")
    ; A) v$ A# n, C& _% u
  335.                         if [ "${updateworldDB}" = "YES" ]; then% u% n! x# o/ P/ A* @6 n) t- L) X
  336.                                 updateworldDB="NO"4 p2 k0 W9 ]; F8 T
  337.                         else
    3 M: p" t2 k  K( r/ G* T
  338.                                 updateworldDB="YES"( U/ o, b; j! I0 q5 W
  339.                         fi0 y" m7 i+ P- o3 C0 z
  340.                         ;;
    4 S5 q! U& P, y2 D+ r4 ^6 a  k( G- W
  341.                 "T")
    # M. I3 P- T- K/ N0 e( S2 V
  342.                         if [ "${createrealmDB}" = "YES" ]; then# L: B) o, ~3 f" `$ y1 L
  343.                                 createrealmDB="NO", t. E4 C* T% P
  344.                         else   S) N5 _4 y. ], C+ T. y
  345.                                 createrealmDB="YES"
    % n. t# J2 I: u0 }9 H5 n
  346.                         fi                                
    . G" i) w. b& @% p0 j+ ^7 @
  347.                         ;;* q9 _5 H/ f2 {$ i9 {* P
  348.                 "R")
    - U4 U  Z, @) \. S* p% R% U; ?
  349.                         if [ "${loadrealmDB}" = "YES" ]; then
    ! d& P) E/ r4 S( H! b
  350.                                 loadrealmDB="NO"                        0 c+ L! |8 @' V2 \
  351.                         else ' Q; O$ x' u0 d* o9 `& T7 |
  352.                                 loadrealmDB="YES"
    7 ~* d- Q/ T6 Z/ C
  353.                         fi6 ~+ ]4 z/ f: B6 u5 h8 D
  354.                         ;;& `0 \+ O( Y  ~; _7 R" S) o& K
  355.                 "Y")
    % i8 C+ O0 I* @$ f4 x
  356.                         if [ "${updaterealmDB}" = "YES" ]; then/ R( @) L9 |1 N
  357.                                 updaterealmDB="NO"# |4 E9 ]& J0 g8 L( E  A
  358.                         else , ]+ E: c& U& j! O
  359.                                 updaterealmDB="YES"+ v, S% E5 T  K
  360.                         fi
    0 c7 I0 H- L$ s9 X. P3 Z# [
  361.                         ;;% w) q; a' R' K, F& i( x' u$ ?
  362.                 "L")( u8 n, F( B* B5 y0 ?
  363.                         if [ "${addRealmList}" = "YES" ]; then
    2 m+ f+ ?( L% t; {: M& b
  364.                                 addRealmList="NO"
    ) ~* P+ N# i" q) G
  365.                         else $ v1 z1 `+ R% _: e1 Q, m! q4 i, H, S( ?
  366.                                 addRealmList="YES"
    - i' P; q  f5 s# k7 v* L
  367.                         fi/ }! J0 H; w+ ^( z( @* y$ n
  368.                         ;;
    ( v$ _4 |% U% U+ ]5 ^2 _
  369.                 "X")
    * z( i0 |# @* O- _3 d. |3 V
  370.                         exit 0;;9 {+ D. P+ q: G' o: ~$ F
  371.                 *)
    + G# ^* M) m! d) u  g* {
  372.                         printf "Invalid selection";;
    + I, }8 M* z7 [: f5 y
  373.         esac: z/ [  ?0 b! Y# F6 h! m
  374. done
    ( g/ w& G7 ]& r: P+ g% e) Z
  375. 7 d& B) i, d9 _8 O3 K9 v; C0 h
  376. printBanner
    5 W0 d( e+ o/ y9 b# }
  377. determineDBName* w% N9 A! L8 {' ?* M
  378. printf "What is your ${dbname} host name ?\t[${svr_def}]: "4 D: a3 ^2 @) F6 r& h
  379. read svr: Q# J! h( O7 i- `/ n$ c2 g: c: L
  380. svr=${svr:-${svr_def}}( M& U4 s  M5 }4 q5 z6 h
  381. printf "What is your ${dbname} user name ?\t[${user_def}]: "
    % k1 h  u7 ?/ T  Y& ^6 O
  382. read user( |- W6 G1 G1 _, K  P3 P: O+ ~9 p
  383. user=${user:-${user_def}}
    % I! p6 R1 l2 ^, V% v8 X5 y
  384. printf "What is your ${dbname} port ?\t[${port_def}]: "
    ) b# Z' h8 Z4 y9 }% `" t8 y
  385. read port
    : S  Y% Q  S: u: K* g
  386. port=${port:-${port_def}}
    ) f5 T# u7 P1 w/ S/ k
  387. if [ $dbname = "MariaDB" ]; then
      o' H3 a  k9 G$ m
  388.         printf "What is your ${dbname} password ?\t []: "
      S4 R5 a4 ~1 S$ g# U" h
  389.         read pass
    & Z5 m( |: M1 U* H2 N! Y( V4 m' g
  390.         pass=${pass:-${pass_def}}
      ]& o' S& \- E1 d
  391. elif [ $dbname = "MySQL" ]; then) d/ j7 Z) |( ~: M3 W1 `
  392.         mysqlconfigeditor. J, X4 C. s& j5 g) [9 o
  393.         $dbconfig
    3 P9 h% {1 q1 I& a$ t8 J7 y
  394. fi8 c0 F3 _# p2 x4 k
  395. determineDBCommand
    8 D$ u7 q7 A# c4 y

  396. " `1 M0 a) F" G# ?1 C
  397. if [ "${DUMP}" = "YES" ]; then
    5 W2 \1 q3 K( s' }' s
  398.         printf "Enter it again \t[]: ". y5 V: J' k" O) y. N, j' w' I. k
  399.         read pass
    ; I! W! p" U1 i* _
  400. fi& n: t- o  }6 y/ [2 z
  401. 4 u+ ?3 Y/ M' r" ^+ v3 S4 G% p
  402. if [ "${createcharDB}" = "YES" ] || [ "${loadcharDB}" = "YES" ] || [ "${updatecharDB}" = "YES" ]; then
    6 b# I6 M4 W0 e# x) q3 }) d
  403.         printf "What is your Character database name ?\t[${cdb_def}]: "
    2 i7 {  W. S$ H6 ?7 t. |, i) w/ R
  404.         read cdb
    6 t! S) K8 c5 ?  h! ^, l$ i
  405.         cdb=${cdb:-${cdb_def}}- y) t" D% E# R" C7 C. Z
  406. fi$ q8 w* e" Q7 y+ G+ H: b+ ?
  407. % G6 U1 E) e; a$ g7 W
  408. if [ "${createworldDB}" = "YES" ] || [ "${loadworldDB}" = "YES" ] || [ "${updateworldDB}" = "YES" ]; then6 _8 i$ {+ E* g  l* Y' H# ^$ W
  409.         printf "What is your World database name ?\t[${wdb_def}]: ") V' ~, a( A6 e; w5 v9 W
  410.         read wdb6 x& d3 A) J2 u( N; o# d
  411.         wdb=${wdb:-${wdb_def}}
    + h7 m/ w  s, g; W0 T9 U) \( X4 ~
  412. fi4 ~2 \% J7 t( r* O& ^

  413. * U9 z$ y! z. W9 s
  414. if [ "${createrealmDB}" = "YES" ] || [ "${loadrealmDB}" = "YES" ] || [ "${updaterealmDB}" = "YES" ] || [ "${addRealmList}" = "YES" ]; then
    + G) T. r  r4 |4 ~+ n3 R  D
  415.         printf "What is your Realm database name ?\t[${rdb_def}]: "2 o% {  Q6 u# A5 a2 G3 I7 |( ~* D
  416.         read rdb* w. I- h/ v& T% k" P2 j
  417.         rdb=${rdb:-${rdb_def}}/ _& [; [* c# |
  418. fi8 T9 k# N! P% f
  419. . J& r4 l& `- t6 m1 [. U: @0 k  o1 J
  420. if [ "${createcharDB}" = "YES" ]; then
    & U9 k# I: O5 A, [, q. p
  421.         createCharDB  q/ Y6 Z1 t7 U0 ?9 i" ?
  422. fi
    ) z1 F( c, N* m. Z" O/ ^! t
  423. # v# {) h4 q9 i& ]. B& y+ O
  424. if [ "${createworldDB}" = "YES" ]; then" s, U( A6 t5 V
  425.         createWorldDB6 N1 z1 [! i( T0 u% J! e& J
  426. fi! a& n( D& N$ t% J

  427. * Q) [  _- T& P/ d: Q
  428. if [ "${createrealmDB}" = "YES" ]; then% g8 |5 j; e+ I
  429.         createRealmDB" Q. H" n' j3 ]; x5 ?2 {# S
  430. fi+ `  R! _/ j: O7 X
  431. 4 I$ Q% s0 `5 ?1 f1 w6 g
  432. if [ "${updateworldDB}" = "YES" ]; then
    % \% ?( V" v2 F
  433.         updateWorldDB
    2 f( x' e4 E+ \5 h+ p
  434. fi
    7 h# h4 U2 H: \5 A: g) r# I- r

  435. 5 i- A, |, T: z2 L# F
  436. if [ "${updaterealmDB}" = "YES" ]; then
    . [/ \/ _- |6 y/ v% X: }* V
  437.         updateRealmDB, s8 L/ h# I, U' p7 W: H8 L. L# g
  438. fi" a* t# R% V7 R$ I; z

  439. 0 d6 l% P$ {, f6 u, e1 L* n7 w5 {
  440. if [ "${addRealmList}" = "YES" ]; then/ h6 z" W5 m- m4 |& [$ v. Y' g: S. N: r
  441.         addRealmList
    1 t. `) c2 ]# W- F: ?. j- n( E3 |
  442. fi6 r5 U7 U' j4 v# g
  443. ; S2 d: v6 G" a' o
  444. if [ "${DUMP}" = "YES" ]; then
    * N0 g; V. O- r% S4 K6 v
  445.         printf "Dumping database information...\n"- H# U: o2 z, J! \1 p$ o
  446.         echo "${svr};${port};${user};${pass};${rdb}" > ~/db.conf
    2 p! b) [; I$ ~2 ?5 a. T2 D0 s& b
  447.         echo "${svr};${port};${user};${pass};${wdb}" >> ~/db.conf* I6 D( `7 n5 |9 e. c; z
  448.         echo "${svr};${port};${user};${pass};${cdb}" >> ~/db.conf: F" G2 z. s! L/ u; D
  449. fi* E0 ~2 y( h) P" A5 j! h
  450. " ?- j& x  m. s' B; |1 W
  451. printBanner
    + X: l3 b9 O  e& B
  452. printf "Database creation and load complete :-)\n") d$ z& f5 \7 w! \0 v4 V" B  x
  453. printf "\n"
复制代码

. F8 @1 z( t8 t' x5 X
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-29 17:24:34 | 显示全部楼层
Playerbot AI 命令+ C, U8 s- l+ ]& d2 i. l2 G

6 w- {2 p6 h5 t2 Q使用 Playerbot 密钥的指南:
9 Y$ A# @7 P% z/ I3 F
& |' Q. _1 c- G* u4 C# O标识符说明
) B: x# V0 @! [# o, u  Q! R' t机器人名称    机器人的名称$ r5 L* i5 _. n0 \
朋友    命名机器人或玩家角色% _% v0 F  U8 t" [4 Z5 q
目标    选择目标玩家、尸体或NPC(非玩家角色)& K  }$ L7 W5 P' b$ j7 _2 Q+ @% [
|    逻辑或
  O( |5 t5 _& {, L0 l8 R&    逻辑与
' F9 I+ O. n, M3 s% M) c: Z1 [5 W+ n..    多个实例
$ c" X% s/ u# @& I/命令    MARCO 命令
. N* v/ T. C# j# Z- E$ S/s    聊天:说
- X0 V" y$ g. |/ R* H/p    聊天派对% G/ p- ^# J* T5 {+ u+ }# I1 I
/t 机器人名称    聊天:TELL BOTNAME) j- Q+ F5 W& o" [' C3 O, B
/w 机器人名称    聊天:告诉 BOTNAME
; p* Y$ F' Q* E+ p9 o<名称链接>    名字=
* h9 w/ s- Z' z) ]  F(捷径)    为命令或子命令分配快捷方式$ n( M! n2 U- V( c# m1 E3 K9 H
+ ]0 ]+ k. o! w, ]+ p+ F
可用 PlayerBot AI 命令的完整列表 SAY 命令:语法说明, p! p: u% V, e! G0 q
.bot 添加 BOTBNAME    为世界添加角色- D8 j' ~# l" ~0 _0 u' T* T
.bot 删除 BOTNAME    从世界中删除角色
1 n& ~6 e1 g7 o( U; w3 u) l+ ]: D: V, g$ w( M! Y" V  a
当前仅与以下 playerbot 代码一起使用:portalzero 和 portalclassic(所有其他代码使用新修订的“命令战斗”命令来设置机器人角色)$ D1 T" r: m) O3 G
.bot < co | 战斗命令 > BOTNAME    分配机器人角色$ U# v. {% e# z0 @2 M

  k6 s" `1 q( \' y宏命令:3 x7 G4 \/ X! N$ S6 \" ]
句法    描述
$ z- l3 e, s) H' T! i+ N( @/邀请机器人名称    机器人将自动接受聚会邀请9 j3 k+ Y" s$ ]% p4 D5 B$ y
/uninvite BOTNAME    机器人将自动接受派对不邀请
8 F3 f% ^% c* }, ~' _. y+ ?: ?
& p+ ^2 k. S' T* C! DTELL/PARTY 命令:(某些命令可能不适用于某些内核)
  t. y; `1 L% W' o9 `6 f句法    描述
+ ?5 q; ~! [; U0 s3 Z8 d协助目标    机器人协助列出的角色,在他们攻击时进行攻击。
% O( N5 n. U5 _( q* ~3 W攻击目标    命令机器人攻击选定的目标,类似于宠物可以攻击的方式8 R# K' c9 ~$ t2 {3 N
拍卖    命令机器人寻找附近的拍卖师并显示机器人的活动 1< Auction LINK >..; e. Y1 a9 Z7 U2 k  G
拍卖 (a)add 1< ItemLINK >..    命令机器人寻找附近的拍卖师并添加 1< ItemLINK >..
$ D6 X4 w0 G9 H4 n1 e拍卖 (r)emove 1< 拍卖链接 >..    命令机器人寻找附近的拍卖师并删除 1< Auction LINK >..9 d& ~* \7 s% B' m
银行    命令机器人寻找附近的银行家并列出机器人的银行余额& u( z# y7 y* C' ?: ?
银行 (d)eposit 1< ItemLINK >..    命令机器人寻找附近的银行家并将 1< ItemLINK >.. 存入银行6 R  C5 G0 G; B5 Y- d3 F" H5 ?8 S% k
银行 (w)withdraw 1< 项目链接 >..    命令机器人寻找附近的银行家并从银行提取 1< ItemLINK >..' ?% u7 ]0 u0 r2 G' U$ D7 D7 [
(b)uy 1< 项目链接 >..    命令机器人寻找附近的供应商并购买 1< ItemLINK >..4 o6 [2 ]0 u" _
©ast SPELL    拼写 = >8 z- v- ^' N8 `
搜集    显示收集对象选项和当前收集状态
+ {7 N' I- R7 L收集对象    设置收集状态,OBJECT = <所有非战斗战利品对象职业任务>
$ J, \2 S3 @! ~% {$ `$ N工艺1<配方链接>..    如果机器人知道,则创建所有列出的食谱
. f5 L8 T# `& Y) u6 B- w2 q工艺1<配方链接>全部    如果机器人知道,则创建一个配方的多个实例
% N. {' m$ c$ Y工艺(a)炼金术    显示所有炼金术配方 1< 配方链接 >,如果由机器人学习4 y# P6 t+ z" j/ t# U1 Y
工艺(b)锻造    显示所有锻造配方 1< 配方链接 >,如果由机器人学习
" S  k+ T( N, m& a7 O工艺(c)烹饪    显示所有烹饪食谱 1< 食谱链接 >,如果由机器人学习" y  q4 ^' X+ e  X$ P
工艺(电子)工程    显示所有工程配方 1< 配方链接 >,如果通过机器人学习
, I( C# ^+ f4 j+ g! r. K0 x; p# A工艺(f)irstaid    显示所有急救食谱 1< 食谱链接 >,如果由机器人学习
9 B8 Z$ J1 f* `工艺(i)题字    显示所有铭文配方 1< 配方链接 >,如果通过机器人学习1 O( i9 S' c# W. m* C1 q- W" D+ L
工艺 (j)ewelcrafting    显示所有珠宝制作配方 1< 配方链接 >,如果由机器人学习. S/ k+ [2 b8 A! z9 c8 @7 L: n
手工艺 (l) 皮革加工    显示所有制革配方 1< 配方链接 >,如果由机器人学习  R4 a0 V, }# B0 C/ z  Z
工艺(m)魔法    显示所有可制作的附魔(例如魔杖等)recipes1<recipe LINK>,如果由机器人学习
$ l5 X- D& C5 l4 n6 ], ^工艺熔化    显示所有矿石冶炼配方 1< 配方链接 >,如果由机器人学习0 U3 k& z& V6 p" `6 I+ f: O6 @
工艺(t)裁缝    显示所有裁缝配方 1< 配方链接 >,如果由机器人学习
; [2 C# h: r. d4 P) i' t7 p掉落 1< 物品链接 >..    命令机器人掉落并销毁指定物品 1<Item LINK>.." s+ B6 |% ]* E" j
全部放弃    当机器人库存变满时,丢弃所有低级物品。" |' j) y6 E  W3 ^5 F  |8 y
附魔    列出机器人学习的所有结界 1< Spell LINK >5 q* w$ Z: w! g8 S' e* M
附魔1<法术链接>..    附魔选择可交易 1< 物品链接 > 装备或包中
4 W" S: t9 a& R' N( S, z) u  m(e)quip 1< 物品链接 >..    从它的库存中为机器人配备容器、武器、盔甲和小饰品# e: m$ A! k( Y! W; ]0 c
(e)quip auto on    打开自动装备,也立即检查6 n( ?) E; ^; t
(e) 装备自动关闭    关闭自动装备。& U7 K/ P  a9 x: c2 B' x( ]2 m
(e)quip auto 一次    运行一次自动装备,然后将其关闭。
, ^: \# t- j6 r0 L9 m$ D, X; R7 [5 z(e)quip 信息    显示装备自动切换状态(开/关)。
1 Q+ h8 Z  z  q7 j9 Y9 O! X* Z(f)ind 1< 游戏对象链接 >    命令机器人定位 1< Gameobject LINK > 然后等待。对任务目标有用3 v$ @9 J0 i$ D! l
跟随    命令机器人跟随玩家;如果死了也会复活机器人,如果很远也会传送机器人
) p: N) w& a, `% }: T* r跟随汽车    切换自动跟随距离(开/关)4 K) M8 w% J+ U. r# [/ T" O
关注信息    显示机器人当前的自动跟随距离,切换状态(开/关)7 c9 r8 u: N; K0 b' X. D4 G
跟着远    机器人跟随,远离主人。/ U- o1 W' q; _: g. c$ \; u
跟随附近    机器人跟随,更接近主人
. t0 M! x6 U( W) e$ o5 P  V跟随重置    机器人跟随距离重置为原始默认值* q. I% k1 r7 M! |
(g)et 1< GameobjectLINK >..    获取选中的 1< Gameobject LINK >.. 然后返回给玩家
6 \( n4 e, I1 x' v; K, |订单    显示机器人的战斗命令
: ^7 O0 g; S: L1 q1 h+ ~) ?订单延迟<0-10>    在机器人开始战斗之前激活延迟。
. R! n4 c' q7 ]+ z3 n命令战斗 ASSIST FRIEND    协助链接的友方目标,集中我们的杀伤力。, k$ ~& R" y: P9 Z; Y9 b
命令战斗治疗    命令机器人治愈。最好用于萨满、牧师、德鲁伊或圣骑士。
  p  V4 _$ T6 S2 T: ]命令战斗保护朋友    保护列出的友方目标,试图让仇恨远离目标。
% T5 j5 {! ?( Z1 u/ ?命令战斗坦克    命令机器人坦克。最适用于圣骑士、战士、德鲁伊或死亡骑士。
7 b* S, i% E3 G9 @, F! B4 J' t命令战斗RESET    重置机器人战斗命令,就好像他们根本没有下达过一样。
7 p% y9 s% f1 ]: d! v# v订单恢复    将战斗命令恢复到注销前的状态。4 b' G0 S: ^: d$ R1 N
邮件收件箱 1< MailboxLINK >    列出来自选定 1<Mailbox LINK> 的所有机器人邮件。邮件按 1< 邮件 ID > 索引。/ |# i5 k; w0 O, y
mail getcash 1<邮件ID>..    从所有选定的 1< 邮件 ID > 中获取资金..* Y$ V. w3 h; Z2 d) k; D! g
邮件getitem 1<邮件ID>..    从所有选定的 1<Mail ID> 中获取项目..
3 z0 s- k0 k5 _& s邮件删除1<邮件ID>..    删除所有选定的 1< Mail ID >..4 N4 @4 @/ s6 @( z, \
宠物遗弃    放弃活跃的猎人宠物。
# L3 q! U3 Q' h' B  A0 a: t4 H宠物驯服目标    驯服选定的生物,如果机器人在法术书中有“驯服野兽”法术* Y! U. t- b* c, @, y# o; l4 w& X
宠物法术    显示 bot 的宠物已知的法术。自动施法法术将显示为绿色
' ?, z* C4 P: P( b! s宠物施放法术    拼写 = >. [3 B4 b5 A3 w% m4 B0 B0 m2 {! d
宠物切换法术    SPELL = >为给定的法术切换自动施法
3 d: p2 G, [! D/ g' ?宠物状态    显示机器人宠物的当前反应模式
# e# ]2 W' L, c' {宠物反应模式    模式 = <(a) 激进 | (d)防御性| (p)被动>$ D3 N( e& S9 {" y
过程 (d)isenchant1< 物品链接 >..    分解绿色 1< 物品链接 > 或更好的* C/ G- u$ W& X0 N; b$ Z% V
处理 (m)ill 1< ItemLINK >..    研磨 5 种药草 1< 物品链接 > 以产生色素4 k. K: a6 M" c- B
过程(p)前景1<项目链接>..    搜索 5 个金属矿石 1< 物品链接 > 寻找珍贵的宝石
4 {8 F+ o( X1 Y拉目标    以协调的队伍/袭击方式拉动目标。
* L5 q3 v& n/ i拉力测试    机器人会告诉您它们是否可以拉动(可以在任何地方使用)。
& H7 \& s& h) b) ^( X" m6 h4 U准备就绪    机器人会告诉您它们是否准备好立即拉动(在具有有效目标的位置上使用)。3 K& `# [$ \) i( Q; T
寻求    列出机器人当前的任务: _/ a; |+ s" O* n% E" f( ?0 P
quest (a)dd 1< QuestLINK >..    命令机器人寻找附近的 questgiver 并添加 1< Quest LINK >..2 u- f2 d( l+ W8 y4 f
quest (d)rop 1< QuestLINK >    命令机器人放弃 1< 任务链接 >  g- p5 S4 U5 e$ ?( I
追求 (e)nd    命令机器人寻找附近的任务提供者并上交所有相关的已完成任务7 {' q' k. G0 j7 ]4 h7 a/ }8 L
寻求(r)报告    报告机器人完成任务所需的所有物品、生物或游戏对象. f1 j/ ?+ V6 w6 h
任务(l)列表    命令机器人寻找任务提供者并显示新的可用 1< 任务链接 >..( ]' b5 T! X( R) W0 A; r
quest (c)完成 1< Quest LINK >    自动完成(GM 批准)任务,可在数据库中找到' _4 B% H8 q  f2 m7 q. Q, W% X
修复1<项目链接>..    命令 bot 寻找附近的 armourer 并修复选定的 1<Item LINK>..
+ J' w5 u% _, u$ e0 R全部修复    命令机器人寻找附近的装甲师并修理所有损坏的装备或包中的物品
8 R0 t4 n# m  X+ P' c- E5 f重置    重置状态、命令和战利品清单1 a% A2 C: g7 T8 R5 E
(s)ell 1<项目链接>..    命令机器人寻找附近的供应商并出售 1< ItemLINK >.." Y- X/ ]' J: d7 Q2 v  L8 ?$ n
(s)卖掉所有    所有低级白色物品的一次性销售(命令不会持续)。# o1 _+ F/ E" U# U. e
技能    列出 bot(s) 1< Profession LINK >.. 主要职业和武器技能
8 O3 P( ~5 J' x# q/ L& Q4 t技能 (l) 获得    命令机器人寻找附近的培训师并列出可用的 1< 培训链接 >..
8 b) j' w9 Q8 y) t3 ^$ P, _% ?技能 (l) 获得 1< 训练链接 >..    命令 bot 寻找附近的教练并学习 1< TrainingLINK >..
5 i4 H. p' r; A6 R, }0 Q- ?7 x技能 (u)nlearn 1< 职业链接 >    命令机器人在附近寻找训练师并忘记 1< 职业链接 > 和相关法术* d) W8 M4 z2 J
咒语    显示机器人已知的所有法术$ H  A% `) \; l1 O7 G
统计数据    显示机器人可用资金、可用库存空间和估计的项目维修成本
  z3 u: k( P, q: S' r停留    命令机器人站立而不跟随玩家- t: W7 v0 F7 h: b( H
召唤    玩家附近的传送机器人# x# C  u' v8 E/ U; Y% V, V
民意调查    在机器人周围的局部范围内显示所有可用的 1< Gameobject LINK >..  s6 T8 J/ l7 O6 D' f2 o" o' K
使用 1< 项目链接 >..    使用物品(例如食物、饮料等)
! O- r: {# n# X& e% `; q使用 1< 项目链接 >TARGET    在目标上使用物品(例如任务物品)
/ [* z5 H. s4 v6 e7 w9 i! h句法    描述
' O! p# o( u4 J0 ~; f天赋    列出机器人 1< Talent LINK >.. & 1< Glyph LINK >..,未使用的天赋点数和重置所有天赋的费用
2 G' I3 \. N% w人才学习1<人才链接>..    为 bot 选项卡或 1< TalentLINK >..â†'talent> 学习选定的天赋
. m$ C; [8 l+ O8 {0 Y/ |天赋重置    命令机器人寻找附近的班级教练并重置所有天赋2& M) U) a4 ^3 h7 k0 J
人才规格    列出机器人可以使用的所有天赋规格(编号为 #)。' M6 w! i1 O; r4 H
天赋规格#    机器人将遵循此天赋规范。3 ]+ M. s$ f( y9 |
- r( V- l0 D$ F( \6 }
1 要选择 , 。
1 o2 B" [3 x% W2 每个机器人的税收增加,每次重置天赋。5 O6 y( B. O- J2 u0 `9 q
, C3 o: W4 I' D$ I, y) T
. C0 Q4 ], X$ D% Y- @) [. d
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-30 08:33:50 | 显示全部楼层

Installing ACE on CentOS 7

Building MaNGOS on Linux requires ACE libraries. I could not find information on installing those here, so I will make a short HOWTO (copied from ACE documentation)) X% Z0 W! M% o6 O5 s. z
3 |$ y3 h: F- B; A! z  C
1. Make a folder for ACE in your preferred location ( I use /opt)
2 J6 w- N9 O8 I( O# w$ E
. u* g  a4 w7 Q2 S, h/ e, {8 l* b: imkdir /opt/ace && cd /opt/ace
! o: ^; Q- `( S- b& D( I: y1 ?3 g: e6 I1 D
2. Download and unpack ACE
7 r4 j  v8 r4 ]9 d# ^! |1 m2 k# {8 Z; p" |1 J
wget http://download.dre.vanderbilt.edu/previous_versions/ACE-6.4.7.tar.gz  X0 [- o6 ?: f9 x5 W
tar -xvf ACE-6.4.7.tar.gz
) [2 ]$ Y5 V: g/ g6 h+ v  d3 ^) H0 e" s3 z" Y2 t$ B8 y
3. Add needed environment variables
/ c1 R! A" u+ n+ t* W; j1 r! a
: @3 _( U- S0 S) Ocat >> /etc/profile <<EOF+ ?$ g& D0 j4 y& r" t9 ]) m6 Z3 R8 o
export ACE_ROOT=/opt/ace/ACE_wrappers
% R6 E3 ^: I1 e' }EOF6 Y: E  o- y# N. F/ M+ @5 Y8 t8 c
source /etc/profile

% y$ T: f2 g; l1 w4 ^' x5 W3 f0 D
! d: |7 |( v/ N* _% G2 \4. Add the desired headers
3 h8 }# x4 o1 [1 p+ z% e& s4 j7 T8 l: o6 X/ `* ~2 r
cat > /opt/ace/ACE_wrappers/ace/config.h <<EOF+ r& A+ |6 l7 p) W  Y
#include "ace/config-linux.h"9 \2 \% d5 i) @3 s6 s
EOF
6 Y6 I. i! Q3 B0 n& Vcat > /opt/ace/ACE_wrappers/include/makeinclude/platform_macros.GNU <<EOF0 @  k: q% t3 w7 v/ N
INSTALL_PREFIX = /usr/local! i7 U! o; J$ z& k2 g
include $(ACE_ROOT)/include/makeinclude/platform_linux.GNU
2 k- |1 ^, a( n+ I# aEOF

0 j9 _2 c5 W1 m! G" f
! k6 u2 i, _( d7 u: A0 [5. Build ACE8 W+ B# n8 I9 t; ]

4 \' y# O( U7 B& Lcd /opt/ace/ACE_wrappers  d/ @( q6 [. s1 |0 Q% P
make
* t* Y+ @  x6 bmake install
$ V4 I, U* ]0 Z4 @1 G9 k

& }9 k( f$ V& x+ g- s6. Add the library to the public path7 Y0 Q  e; Y; I9 ?
* V0 o6 `6 w6 {$ v! C; h; Y
cat > /etc/ld.so.conf.d/ace.conf <<EOF
- `( U/ K$ ?- b/opt/ace/ACE_wrappers/lib4 d' ^/ S9 K# R9 u4 T
EOF. H# S6 o- O, N7 ]- @1 t
ldconfig -v

1 c) V3 ]2 i2 J1 l9 U
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-30 09:58:27 | 显示全部楼层
/home/mangos/two/src/server/src/game
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-30 11:10:41 | 显示全部楼层
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-30 13:54:45 | 显示全部楼层
Download WoW Wotlk 3.3.5 Client
  ~1 w7 e  f7 I- X. ~Torrent Download
7 s2 D0 p( H$ s1 g; N+ f: y$ y2 M, ?& B( s* a
These are clients that can get downloaded through a Torrent. We always recommend using a VPN, when you download the World of Warcraft – Wrath of the Lich King Game Client of 3.3.5. The reason is to avoid copyright infrightments from your ISP
3 x  I3 d" |7 x* i. x
& Y9 e3 ^+ n5 C9 l( M& q# e1 o    Torrent – Client from Dalaran WoW (Recommended)2 y% q; e* z9 ^5 ^
    Torrent– Client from Sunwell (Recommended – Fast torrent download, due to a lot of seeds)
% p7 Z% f% @( _- d& A" N    Magnet – Client from TrueWoW
+ f, G3 f6 K# U+ u3 H+ K9 V+ Q" T. ]5 [5 a" M
Direct Download5 v; x$ ?# x; U" o6 k) i) N
9 G; o! ^' R$ r2 \- V- e/ ^% }7 I
Below, you will find direct client download links. Instead of downloading through a torrent, it will download through a media upload service. If you can’t download through a Torrent, we recommend the ones below.8 }1 g& u% d' D  s

7 D9 ^+ e" c) D1 C0 @, G; p    Direct – English Windows client; z3 C# n/ A! Q% `2 ]

5 ^( L$ b7 J; ], v  Q. Z; ~3.3.5 Wotlk MacOS Client
- t7 I' J( \+ c/ d1 p2 m
8 P2 [) u7 Z# o0 n; h* BThe Mac users should of course also be able to play on a 3.3.5 Wotlk Mac Client. Therefore, you will be able to download below.
2 n( D% v3 q0 ]8 _9 k. c( _
! S6 x- a3 O% Z    Direct 3.3.5 MacOS Download – Client from Sunwell4 C/ N8 f% ?# W7 M1 ~  b( e
    Direct – Client from Paragon-Servers (French)(Mac)* ?+ Q* v% q$ T1 w* ?: o. G

! w6 b" `% x; [9 }7 [( `' {Modified Clients, LegionRemaster:
+ m3 U/ l5 C1 p  P4 b9 V# t4 q) R6 U# x# V6 A
    3.3.5 LegionRemaster Torrent – From Sunwell and Finsternis( y! a6 Y8 b: k% `, Q1 J
    LegionRemaster Patch (modified). U6 c( Y) f, P- H4 e$ z3 G
    LegionRemaster ReadMe (Custom) ; D8 O" S8 s, n! Q1 a
https://zremax.com/blog/wotlk-3- ... e-lich-king-client/
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-31 00:24:58 | 显示全部楼层
开源的魔兽世界 Mangos$ g* j0 z) }, W: ?) t4 h/ I5 E4 @& Q
  o- K' x3 y( J" f: P2 z0 e( U
在sourceforge上开发的 (Ma ssive N etwork G ame O bject S erver) 项目是基于GPL协议的。据说是和魔兽世界独立无关的网络游戏服务器引擎程序。游戏的内容部分(数据库内容)又是由独立的小组开发的,这样也许避免了很多 法律上的问题。但是大多数魔兽世界的盈利的私服都是基于这个开源的项目的,为此开发小组表示这样盈利性质的服务器和对他们项目的使用是违背协议和非法的。
1 D6 H5 _* ]- y2 R6 T. Q) E
" ]+ h* N$ q2 g, s本文 是对mangos作了一个粗略的介绍,并且使用了魔兽世界的客户端对mangos作了一些测试。. B) h& w( _  f0 A
/ e: z5 Q/ ?4 }$ d% G6 x
正文如下:7 y0 C  k' S1 g8 P. f$ B2 H
5 S0 G7 W0 t2 `$ Q! c
开源社区常常有很多出人意表的项目,让人往往击节叹赏。例如当年在普通PC电脑上虚拟运行苹果机系统的 。把微软游戏机xbox改装成家庭影音中心的 ,以及在ipod上安装linux的 等项目。在电脑游戏方面当然也有很多出色的开源项目。* B$ `" W( w$ U# N8 ^
3 a  X; j6 Q5 e% r
暴雪公司的游戏历来都是精品。网络游戏大热以后,它推出的基于10年游戏历史的网游:《魔兽世界》也更是名声在外(当然有好有坏,坏名声在于它太吸引 人以致 于很多人沉湎其中)。网络游戏的盈利模式和传统电脑游戏不同,月费和其他的周边产品使得其赢利空间远远大于传统电脑游戏。对于网游运营商来说很大的一个问 题是私服的问题。很多私服的软件是从网游开发公司或者运营公司内部非法的流出来的,比如说网游《仙境传说》的私服。
/ B. M5 ]3 ^2 C2 n( w) B. F$ n) A, g) V# \
而现在大多数魔兽世界 的“私服”实际上是服务端软件的模拟器。是在对客户端游戏软件和与服务端的进行通信的数据进行分析解密以后,开发出来的模拟原游戏服务器功能的软件,这样 的模拟器软件大都也是开源软件。比如像现在大部分魔兽私服使用的Mangos服务端软件,mangos项目是一个开源的自由软件(如同linux或者 firefox),并且遵守其中最为严格的GPL协议。
8 |! |: B  f, P9 W2 J% Z- s- c1 `" f- X
  MaNGOS 是(Ma ssive N etwork G ame O bject S erver) 的缩写。由于暴雪公司对类似的开发小组采取过一些法律行动。为了避免麻烦,如同它的名字,mangos强调自己并非一个魔兽服务器模拟器,而是一个开源的 多人在线游戏服务器的软件。说到底是个网游的游戏引擎。Mangos开发小组强调其软件是用c++和C#编程语言,实现 的一个支持大型多人在线角色扮演游戏服务器的程序框架,在这个框架下,它理论上应该支持任何客户端的网络游戏,由于现在很多人使用魔兽世界来对它进行测 试,所以针对魔兽世界的脚本和数据库文件比较完善,很多人就利用这个开源项目来实现魔兽私服。而游戏的内容,例如故事情节,任务场景的脚本等都是由别的小 组独立开发的。
1 |% e. C% n# h& M) _; l- w( m/ |  L" H7 K
开发小组一再强调,这是个研究,教育性质的对怎样开发大型网游的服务器端有好处的项目,是一个技术细节毫无保留向公众开放的软件,是一件很有 意义的事情,如果你使用它作为盈利目的,那你本身就违反了软件的协议。所以任何利用mangos项目进行私服活动的组织和个人都违反了mangos的宗 旨,mangos项目也不会对它们负责。
* o9 s' s7 `4 ^5 i& u) B; Q+ }6 U: q; F8 p* f7 s  O4 q6 H$ M
mangos的技术细节上是这样的,核心部分是个和特定游戏没有关系的核心框架程序,主要是进行进程调度,创造世界,建立心跳机制,处理网络接入 等。数据库可以使用的开源数据库软件MySQL。至于游戏内容数据库,游戏人物,时间,世界脚本,都是由这个核心程序所支持的扩展 脚本来实现,所以有一些独立出来的项目专门模拟魔兽世界来开发支持mangos的核心程序。现在mangos的核心程序已经放到著名的协同开发网站 sourceforge上开发了,使用的开发工具是subversion。大家都可以从sourceforge的subversion数据库中下载最新的 源代码程序。8 U. T6 a3 V$ c' f4 a/ n
* s' m- c# g3 F

/ m* I/ p' c. W$ g/ Q为了测试这个Mangos我自己安装了一个测试了以下,自己对魔兽世界的游戏本身没有太多的了解,请了几个玩过魔兽世界的朋友测试了一下,都说各方面 已经很 完美了。最新的Mangos项目已经支持了魔兽世界的扩展版“燃烧的远征”,简称TBC,对应的魔兽客户端版本到了2.0以上。以下的安装测试步骤适用于 魔兽世界客户端1.12.x的版本。
. e; h% e/ [6 j& S  o* V' [+ S' \$ L1 J6 P8 S3 T+ a; L% T
一、安装需求:
  • 操作系统Windows Xp,解压软件推荐 。(mangos论坛上有人在linux,macosx上安装,为了提取地图方便这里使用windows XP)
  • 魔兽世界的客户端软件,升级到1.12.1版本以上。
  • 编译好的Mangos二进制文件。(你也可以自己编译,我这里提供的是Mangos Rev 3462,3462是开发数据库的版本号),下载地址:
    $ z3 W" Y5 K1 U2 Y0 ^
  • 地图提取工具ad.exe(这个地图提取工具是专门针对1.12.x版本的客户端的,TBC需要比较新的ad.exe,TBC的地图提取工具不适用老版本的地图),下载地址:
  • mpq文件包提取工具MPQE_1.2.rar,暴雪公司的游戏都采用一种叫mpq的文件格式,是M ike O'Pack 的缩写,这个Mike就是暴雪公司的首席游戏程序开发人员,和创始者。我们需要使用mpqe.exe从客户端里提取相关文件。下载地址:! V( J1 I3 X( Z$ X0 j
    Brien
  • 开源数据库软件MySql
    * N" P& {- Y$ j, O0 L3 K# W官网:MySQL

    ! ?- K; b0 P2 _或者用我下载的版本:
  • MySQL的客户端软件SQLyog,编译管理操作数据库
    4 Z4 W1 M5 L3 N官网:
    & n7 N  l! c# C' h1 i6 |7 Y2 Y3 _
    我下载的版本5.30:
  • 游戏内容数据库,配合Mangos Rev 3462的版本。' i8 r7 e4 p0 Y7 c. _$ n) ?
    文件名:CompleteSDB156-Mangos3462.rar
    " k3 {% ?' P2 C5 K- W$ J下载地址:
    ' Y( q2 g  D! b

    1 l+ l+ K$ u+ i9 ?" y* K; J  p/ B8 \
二、安装MySQL数据库,以及SQLyog客户端
  • 点击安装文件选择典型安装(Typical)
  • 配置数据库服务器"Configure the MySQL Server Now",选择标准配置"Standard Configuration"。
  • 确认安装成windows的服务程序和自动启动服务"Install as Windows Service"、"Launch the MySQL Server Automatically"。
  • 输入你的root用户的密码。可以打开的使用root远程管理数据库的选项,便于远程管理,和链接。
  • 应用你的设置。
  • 点击安装SQLyog的安装文件,安装到缺省路径,运行SQLyog。
  • 当SQLyog运行后,需要输入以下信息:
    • MySQL主机地址:可以输入你的本机IP地址或者"localhost"。
    • 用户名(UserName):root
    • 密码(Password):在第4步里面你配置的密码。
    • 数据库(database(s))输入:"realmd;mangos"
      # e4 Q( W% _) u5 g0 ^
      l. G7 U) s% Q7 h- E: m
点击连接,这样客户端就连接到你的MySQL数据库服务器上了。在左边一栏右键点击“root@localhost”,选择建立数据库"Create Database"。当提示输入数据库名称的时候输入:"mangos"。重复第9,10步建立数据库"realmd"。 三、安装Mangos服务器,配置路径+ l) \2 b3 f: }6 L) n& f- T
  • 建立一个目录,例如:"C:\MaNGOS"
  • 把你下载的mangos的二进制文件解压到这个目录里面。
  • 检查你的两个重要的服务器配置文件:“ mangosd .conf”和“realmd.conf”。其中“mangosd .conf”里面可以配置物品,金钱的掉落率,经验值的增长率等等。$ \# H" B# W3 j5 f+ ~( ^
四、解压安装地图文件
4 w$ B/ ?4 A9 ^/ I3 F: x( ?8 N# S: Z
  • 把ad.exe放在魔兽世界的安装目录下,例如("C:\World of Warcraft")
  • 建立一个子目录叫maps,结构为:("C:\World of Warcraft\maps")
  • 运行ad.exe文件。耐心等待ad.exe把魔兽世界的地图信息提取到maps目录下。
  • 将maps子目录拷贝到"C:\MaNGOS"目录下,结构为:"C:\MaNGOS\maps",里面的地图文件大概有2400多个。
  • 可以安全的删除"C:\World of Warcraft"下的maps子目录了。
    + o/ }% O" \" I% X. o0 _
五、解压安装提取的*.dbc文件
+ U% S* s; I( ]3 C* J
  • 在你的mangos的安装目录下建立dbc子目录,结构为:("C:\MaNGOS\dbc")
  • 为了将暴雪公司的mpq文件的内容解压出来,将提取工具mpqe.exe拷贝在魔兽世界安装目录的data目录下,结构为:("C:\World of Warcraft\data")
  • 打开dos窗口,进入魔兽世界的data目录(cd "C:\World of Warcraft\data")。
  • 执行以下命令:* {% S4 l" H: G% T( @' ?5 @7 y/ w
    mpqe /p dbc.MPQ DBFilesClient\*.dbc
  • mpqe工具将魔兽的游戏信息提取到了\MPQOUT\DBFilesClient目录下,整个结构为:("C:\World of Warcraft\data\MPQOUT\DBFilesClient")
  • 当mpqe运行结束后,可以将所有的*.dbc拷贝到你的mangos的dbc目录下:("C:\MaNGOS\dbc"),你大概有158个*.dbc文件。
  • 你可以安全删除魔兽世界下的dbc文件目录:("C:\World of Warcraft\data\MPQOUT")了。
    7 h8 [9 l/ Z0 X: v' o
七、下载安装数据库内容,前文说过,mangos只是游戏引擎,游戏的内容,建立的数据库由独立小组开发,我们这里使用著名的Silver's Database Site的库。版本号为SDB156.4 `/ X$ D7 m; _* ^% `3 K
  • 将下载的CompleteSDB156-Mangos3462.rar文件解压,里面有几个数据库文件。找到其中“realm-database-full.sql”和“mangos-full-for-rev3462.sql”文件。
  • 使用SQLyog连接到你的数据库。
  • 在左栏找到realmd ,点击右键选择"Restore from SQL Dump",找到“realm-database-full.sql”,导入数据库文件。
  • 同样找到mangos, 点击右键选择"Restore from SQL Dump",找到“mangos-full-for-rev3462.sql”,导入数据库文件。- e! L5 }' _$ l* v1 x% O( J  S
八、配置数据库,配置文件,运行开源魔兽服务器!本文只为测试游戏,在局域网中玩。
& r) f) c7 E* O* ?# F7 s
  • 使用SQLyog连接到你的数据库。
  • 找到realmd,展开找到"realmlist"选项。
  • 在右下找到"Table Data"。
  • 在name一项填入你的服务器名字,例如叫faif
  • 在地址address一项可以使用"localhost" 或者你的IP地址。
  • 在realmd数据库下找到account表,点击"Table Data",建立你的游戏帐号,里面已经由几个内置的帐号,你可以参照gm,普通玩家的 帐号建立 你的用户名,密码。
  • 在mangos目录下打开realmd.conf 文件,找到. L+ T- l- e! K! O- n8 Y
    "LoginDatabaseInfo ="7 w+ ?# l& l+ U
    改为:"LoginDatabaseInfo = "127.0.0.1;3306;root;[password ];realmd"
    ; V4 O2 u7 }( a/ g这里的IP地址可以是你的IP,[password ]是你的密码。存盘。
  • 在mangos目录下打开mangosd .conf 文件,找到如下的内容,并设置如下:
    • DataDir = "."
    • WorldDatabaseInfo = "127.0.0.1;3306;root;[password ];mangos"
    • LoginDatabaseInfo = "127.0.0.1;3306;root;[password ];realmd"
      ! p9 D  j" n' z$ \2 \

    + ?4 B; s; F* `  i, P, y: x
同样,这里的IP地址可以是你的IP,[password ]是你的密码。存盘。到这里基本就大功告成了。先运行realmd.exe文件,稍等,运行mangosd .exe,魔兽服务器就已经运行了。连接到你的魔兽服务器,修改你的魔兽世界客户端的realmlist.wtf 的文件,将127.0.0.1 ,或者你的IP地址填在里面,例如:"set realmlist 127.0.0.1"   到此为止,开源的魔兽服务器就架设成功了,我给朋友建立了几个gm帐号,他们测试了一下,觉得这个版本的做的很不错了,开源的宗旨是知识的分享,开源 社区黑客们的探索精神页不得不让人佩服。
% p" W: T! i8 Q3 j* p5 D8 \

, T0 q9 V$ q0 {4 |5 z# j# T  o7 m$ |% r
5.安装数据库1 L6 J$ M! t5 M& {& i. c
使用mysql建立 mangos 数据库
% H# n' @4 R# ~# g2 u
( ]0 R6 V+ a+ D8 _/ Ka1)使用官方最小数据库,mysql用户名及数据权限等请自行设置1 l0 K( _* W, E4 R/ M: e) @
mysql -u root -p mangos< /usr/local/mangos/share/mangos/sql/mangos.sql 导入数据: `! P, o) R2 W( _$ I+ Q$ B( G
- `* X5 s# @) q( b
a2)使用sdb数据库,mysql用户名及数据权限等请自行设置
/ R- z# ?  [7 \0 j- ?4 ^假设sdb数据库文件为 /home/wow/SDB/trunk/SDB_r1178.sql
, E! ^! o+ P  \! T( Wmysql -u root -p mangos< /home/wow/SDB/trunk/SDB_r1178.sql 导入数据
" a5 u  d6 q# ^* P4 [* m
& W7 D* ^7 w0 k/ ib)编辑 mangos 数据库的 realmlist 表,修改 address 为你运行mangos服务器的IP地址,这里设为192.168.1.1
4 }0 C+ J9 g5 X% M2 B* c* J
5 f' Y' U# y, B7 h* [' S6.编辑配置文件
/ w9 {2 G1 N; c* U( Y& w6 Z编辑 /usr/local/mangos/etc/mangosd.conf
3 T2 ~) {- p; ^: i/ C; t
3 Z) u8 C) ?5 J* U0 ea)找到 DatabaseInfo = \"127.0.0.1;mangos;mangos;mangos\"+ L# u# z4 a7 }4 F0 |5 N( j
为你自己的配置,格式为 DatabaseInfo = \"mysql服务器ip:mysql用户名:密码:mangos数据库名\") p# R$ D( i& l( f3 k

/ G9 x0 o7 _+ b* \3 nb)找到 Host = localhost8 s: E+ z! f' X$ |% f' ~4 k( ^
为你自己的配置 Host = 你的IP或域名,这里设为192.168.1.1$ o5 z0 M5 x* S, v, _

: J4 W+ _0 K; W; m! F7 u' Y: f
回复

使用道具 举报

983

主题

83

回帖

5万

积分

管理员

积分
53122
 楼主| 发表于 2022-7-31 00:42:45 | 显示全部楼层
您好,在本教程中,我将逐步说明在 CentOS 7 Linux 系统上配置、安装和运行Mangos的方法。要完全执行安装,您需要一份要运行的游戏客户端版本的原始副本。4 B2 a6 ^% h! c7 c1 i6 W  A3 O' K8 G
. D+ e5 G( S" L' U2 b/ U
本指南已在安装最少的空 CentOS 7 系统上进行了全面测试。
/ L7 E" C/ S9 z6 \" h+ |+ u( v. s, M8 K
我们走吧..6 U! u% d* N5 `2 w$ _

! f- F* ?  v; I设置数据库:$ ?& k+ r( S5 P. C! m  P
- h" W, y; r+ e1 n8 z
CentOS 默认支持 MariaDB 而不是 MySQL。本指南的这一部分将帮助您设置 MariaDB 实例。: e( F3 W/ {: h) o5 B# P
0 y1 h" }! f+ y0 l( h0 s: N' z" `
启动一个终端,如果还没有,您需要成为“root”用户:
/ O- c1 W1 U+ F. R7 D. e
7 A! j! @5 u/ O' t% C  F须藤苏 - 根1 s8 }7 h; B2 X$ o& C# v1 B
然后,安装 MariaDB:& x, [  U! c7 g! q! z. X
( p8 [7 f1 ^* ?4 R
yum -y 安装 mariadb-server- P  K! i% K% {4 |$ o* X
     安装 MariaDB 后,启动它:* A7 O# u7 ?$ r' d( ?
7 X6 M0 W: s5 L/ \* w6 M1 Y. t
systemctl 启动 mariadb, X5 X" B+ h  r6 c
我建议您在启动时添加 mariadb 服务以自动执行它:
3 u2 x, ^2 S; Y1 m' C1 ^
: _& U2 [+ Y6 Usystemctl 启用 mariadb
( X" D, f! l  E; [2 p让我们保护您的 mariadb 安装,执行以下命令:
: D- I7 n$ g7 D7 G/ x8 q" ^5 C% ]" @5 L
mysql_secure_installation% A% N8 |. b8 K! t8 J
我建议您设置以下参数:: H1 T7 T1 g, J! z

/ T) Y% N* k. S; Z$ b. O$ j) |设置 Root 密码
5 `7 r7 p# P: \/ V- D0 G  C删除匿名访问
) s& o3 F: l- z) H  U禁用 root 用户的远程访问
* Z' J% z& |+ ~9 I- _删除测试数据库
/ _) i& C/ ~1 w1 v重新加载权限
/ ?  y7 \& o" q8 \( ]) {验证您的数据库配置是否正常工作,您需要提供刚刚定义的 root 密码:( ^1 `6 S! b$ T: a1 c& t! v

+ T; c5 ?% v! j7 C7 qmysqladmin -u root -p 版本5 r: B. u; |$ q1 u5 y/ p% I
如果一切正常,您应该有如下输出:7 u' f* C5 a$ o+ k8 [1 q

+ M4 H2 i1 d0 R" _* [! B) I服务器版本 5.5.52-MariaDB
, L6 ^; h( |+ J( f协议版本 105 b. I$ ~( o7 t) U
通过 UNIX 套接字连接本地主机
& ]3 y3 c* o4 S, R. Z* \UNIX 套接字 /var/lib/mysql/mysql.sock$ u% B) d5 Q! i/ ~5 l
正常运行时间 x 秒
% z  b* U3 K1 q' R8 I1 j- | $ T; M/ B/ S" o/ z5 o1 o
' T4 U! @' h. D5 V& o: G
现在数据库的设置已经完成,我们需要添加芒果数据库配置的先决条件。我们需要首先为mangos创建一个用户,使用以下命令登录数据库:: {$ h- u- z' r; `) l
$ U3 S+ I$ R# s6 K$ e, g& _' g
mysql -u 根目录 -p
& `1 u. E- U  E5 W, Z) J创建您想要的用户,给出的示例是创建一个用户“ mangos ”,该用户可以从“localhost”连接并在末尾输入密码“password”(不要忘记“;”):
  D7 Y) b1 t. l& }: k: d5 D. {8 c( Q( `) s/ [8 ?1 [9 _, P
创建用户“芒果” @ “本地主机”由“密码”识别;
7 p2 O$ I- d! X, c6 l/ w然后,我们需要向该用户授予权限,以便我们以后可以使用它来设置Mangos模式(同样,不要忘记“;”符号):
  E- J# m5 q& W- ~; i+ l; C% y3 [, E' V1 D6 E7 |
将*.* 上的所有特权授予“芒果” @ “本地主机” ;# m- K4 Z8 W# a" p
退出终端:6 t' d( a; S" R$ U* [
7 U# ]) A! X- K# R
退出
  Y' y# a! G6 X8 {# Q恭喜,您已经在 CentOS 上设置了数据库的先决条件!6 s4 j7 C/ v) C; F

+ x# W7 Q8 H9 v, o% K" |   M$ r! F0 p$ q  J* `
7 O& [7 f  v1 y: [
安装芒果:
! K6 T: L9 \4 _' S
  D: y0 H& {8 ~- V; p我们现在处于有趣的部分,我们如何在 CentOS 上安装Mangos ?好吧,假设您以“root”身份登录,请转到主目录:! U( [  @" a2 J: {

  [: f5 Q) q% x% S; T6 f. ?, ^6 p5 z光盘~( Y2 n& @1 C( J; Z3 m. V0 e  x5 j
让我们先安装所需的依赖项,wget 是一个小实用程序,可让您下载安装程序脚本:: z6 G) @' h' P
' X; k* v! P( D6 H+ U  |
yum -y 安装 wget
$ U) |0 T3 y3 c3 t& m9 P# a现在,我们可以下载我们的安装程序:, m2 Z1 w' k8 {7 h% U0 b& }0 Q

7 d* i- {- `/ R( |$ Kwget https://raw.githubusercontent.co ... /linux/getmangos.sh
: Z8 E8 M; U. w0 r# _设置允许执行它的权限:9 p( n/ N5 U- F% w* _6 n$ H/ ^8 d. n
) K" `( t( T, b# _# H. j. g9 Q) X7 K
chmod 700 getmangos.sh
. P) }0 b2 ]4 x并执行它:
6 K+ S  F+ J$ L! Q3 |, A& y0 t" M
+ R3 h5 c4 Y' H! K./getmangos.sh6 h+ {- t+ H& p8 w  j
在我们进一步讨论之前,对可用活动进行一些解释:
- m* e+ H! \2 k3 x" y$ g( I" p) E
, r  P" Y& ~( a0 r$ [8 C2 B安装先决条件将为您安装所有必要的依赖项以构建和运行mangos。默认切换。: g; o/ J5 A5 G( D, E4 g! y
设置下载和安装路径将允许您指定必须下载源的位置以及必须安装二进制文件的位置。默认切换。
+ [  v5 ^9 }9 n, F% C5 j克隆源存储库将帮助您克隆Mangos源。默认切换。
; [+ X; r7 ~& GBuild MaNGOS将协助您完成MaNGOS的构建过程。默认切换。
5 w1 J, p# j: X; ]$ _# x安装MaNGOS将帮助您安装MaNGOS。默认切换。
$ |% n/ }! _, T2 V. y, J安装数据库将帮助您创建数据库模式。默认切换。9 ?% @% r3 o) |$ w) `7 g
提取资源将帮助您从游戏客户端中提取 DBC、地图、mmap 和 vmap。默认切换。) j& y% m2 I& K1 A) V1 u8 z. m9 q1 }
创建 Code::Blocks 项目文件将为 Code::Blocks 编辑器创建一个项目。如果您不打算编辑MaNGOS源,请不要切换此选项。9 k6 v) j1 h. b; r; N) G' s
现在您已经了解了所有内容,请选择默认选项并通过 Tab 键选择“确定”。该脚本现在正在您的 CentOS 上安装必要的依赖项。系统将提示您同意安装构建依赖项。选择“是”两次。- Z7 o! ?% N) v3 D3 ^
5 X, ?' T9 r8 w. `
用户选择:
+ W, `$ M' y2 a* T) A: \! Y5 k7 ^; o8 S$ \& f+ C
Mangos为您提供了在“root”用户以外的其他用户下运行它的机会。这是一种很好的做法,可以隔离软件并在漏洞被利用的情况下限制安全影响。默认建议的运行用户是“ mangos ”,但您可以根据需要进行更改。选择“确定”继续。% R2 J4 m2 U. n7 d

& S$ w& T0 \5 u& M4 ~7 i7 p如果您已经执行了此步骤,安装程序将询问您是否要保留该用户。我建议您回答“是”,除非您知道自己在做什么。
$ a% j) P$ \* |' i% N/ E- s0 x; }2 C3 s8 n6 l- O3 C
选择魔兽版本:
: P7 t7 @8 Q0 Y1 H
, X+ H$ e, W+ d# d# u: d* }! C) L下一个屏幕要求您选择您愿意安装的 WoW 版本。选择符合您愿望的那个,然后选择“确定”。! C2 z1 R9 k, U3 ?: |# {

  z$ N$ k5 P( K/ a源代码路径:3 K* `5 x: `0 O/ j) @0 P  ]  @, R

/ k( h- x$ R- U+ ?  t4 ^下一个屏幕要求您提供源路径。默认情况下,建议的格式是 /home/<run user>/<wow version>/src。例如,对于运行用户“ mangos ”和 wow 版本“Vanilla”,建议的路径将是:
8 D9 f4 l0 ]9 G, q2 B7 A8 x7 G
9 G  Y3 H. o! m; A/home/芒果/zero/src
/ E0 M6 F: d4 f7 g/ `. \. y6 e如果目录不存在,请回复“是”以创建目录。如果它确实存在并且包含源,安装程序将询问您是否要删除该内容。
/ `: U9 t$ @* X$ q5 F
8 ?" R* t4 Z5 C1 f/ I) C+ J安装路径:1 v3 g1 V) |& Y& T, s
8 }1 P5 B7 c) {
下一个屏幕要求您提供安装路径。这是您将执行Mangos流程的位置。默认情况下,建议的格式是 /home/<run user>/<wow version>。例如,对于运行用户“ mangos ”和 wow 版本“Vanilla”,建议的路径将是:
: f7 R9 n  w8 l3 E' M* [$ u, |, A" `- q+ G2 E% U8 I' H8 i
/home/芒果/零' r. G2 V3 }* q6 ?$ K! r  Q
如果它确实存在并且包含已编译的源,安装程序将询问您是否要删除该内容。/ E: ]6 {% C1 F  p. \

$ o7 c8 B: `0 q1 o克隆或更新MaNGOS:
7 i! G5 T- z0 h8 K, Q, c- p% g7 e2 M5 _/ k+ B5 Q
脚本的下一步是询问您是否要克隆、更新或使用MaNGOS源的现有副本。对于全新安装,请选择选项“0 克隆MaNGOS的全新副本”。安装程序现在将连接到 Github 并检查可用的开发分支,目前,最后一个稳定版本是 Rel21,并托管在“主”分支中。
! e/ ?0 r: h, \& I/ e: y/ c# m6 k( v& k( M: m9 x+ I
安装程序现在正在克隆服务器和数据库存储库。( f( ]  D% @1 f
& u9 g9 x7 r, d, p( F' r
构建选项:
* `* l  s  G* q/ t( U' l& v
" y3 @, q( S" |6 F: d您现在处于构建步骤。此屏幕上的一些解释:6 ]: W& }/ X+ U8 U* U$ X) p

6 v3 N' q2 _. U. B$ N% sEnable Debug 将在Mangos 上设置调试标志和更多跟踪。仅当您被要求修复错误时才使用此构建选项。在调试模式下构建软件会显着降低其性能。
9 p- u2 {# c+ ^+ h使用标准 Malloc,切换此选项以使用标准内存分配。仅当您知道自己在做什么时才取消切换此选项。
$ {5 i: s$ b8 ^5 A5 {7 t使用外部 ACE 库。允许您使用来自系统的 ACE 库。此选项在极少数情况下有效,并且将来会被删除,所以不要切换它(无论如何, MaNGOS有一个“内部”ACE)。# b' r  C! f9 ]
使用 PostgreSQL 代替 MySQL/MariaDB。允许您使用默认数据库提供程序以外的其他数据库提供程序。此选项尚未经过测试,如果您到目前为止已经按照教程进行操作,那么您应该已经设置了 MariaDB
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|返回首页

GMT+8, 2024-12-23 20:39 , Processed in 0.111939 second(s), 28 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表