mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-22 05:50:40 +08:00
add package: openttd
This commit is contained in:
parent
9974b088a5
commit
ee3fa034a4
3 changed files with 143 additions and 0 deletions
93
openttd/0001-change-network-server.patch
Normal file
93
openttd/0001-change-network-server.patch
Normal file
|
@ -0,0 +1,93 @@
|
|||
From f1ecd7bbb1e92c22d463ac9521a258f2454bc9e3 Mon Sep 17 00:00:00 2001
|
||||
From: Jerry <isjerryxiao@outlook.com>
|
||||
Date: Sun, 26 Apr 2020 20:40:46 +0800
|
||||
Subject: [PATCH] change network server
|
||||
|
||||
---
|
||||
src/company_cmd.cpp | 2 +-
|
||||
src/company_func.h | 1 +
|
||||
src/network/network_server.cpp | 40 ++++++++++++++++++++++++++++++++--
|
||||
3 files changed, 40 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
|
||||
index 6308c1447..068f33dc5 100644
|
||||
--- a/src/company_cmd.cpp
|
||||
+++ b/src/company_cmd.cpp
|
||||
@@ -208,7 +208,7 @@ bool CheckCompanyHasMoney(CommandCost &cost)
|
||||
* @param c Company to pay the bill.
|
||||
* @param cost Money to pay.
|
||||
*/
|
||||
-static void SubtractMoneyFromAnyCompany(Company *c, CommandCost cost)
|
||||
+void SubtractMoneyFromAnyCompany(Company *c, CommandCost cost)
|
||||
{
|
||||
if (cost.GetCost() == 0) return;
|
||||
assert(cost.GetExpensesType() != INVALID_EXPENSES);
|
||||
diff --git a/src/company_func.h b/src/company_func.h
|
||||
index cec611004..d2758ecd0 100644
|
||||
--- a/src/company_func.h
|
||||
+++ b/src/company_func.h
|
||||
@@ -26,6 +26,7 @@ void UpdateLandscapingLimits();
|
||||
|
||||
bool CheckCompanyHasMoney(CommandCost &cost);
|
||||
void SubtractMoneyFromCompany(CommandCost cost);
|
||||
+void SubtractMoneyFromAnyCompany(Company *c, CommandCost cost);
|
||||
void SubtractMoneyFromCompanyFract(CompanyID company, CommandCost cost);
|
||||
CommandCost CheckOwnership(Owner owner, TileIndex tile = 0);
|
||||
CommandCost CheckTileOwnership(TileIndex tile);
|
||||
diff --git a/src/network/network_server.cpp b/src/network/network_server.cpp
|
||||
index 36a15d3ae..578246a41 100644
|
||||
--- a/src/network/network_server.cpp
|
||||
+++ b/src/network/network_server.cpp
|
||||
@@ -1437,11 +1437,47 @@ NetworkRecvStatus ServerNetworkGameSocketHandler::Receive_CLIENT_RCON(Packet *p)
|
||||
char pass[NETWORK_PASSWORD_LENGTH];
|
||||
char command[NETWORK_RCONCOMMAND_LENGTH];
|
||||
|
||||
- if (StrEmpty(_settings_client.network.rcon_password)) return NETWORK_RECV_STATUS_OKAY;
|
||||
-
|
||||
p->Recv_string(pass, sizeof(pass));
|
||||
p->Recv_string(command, sizeof(command));
|
||||
|
||||
+ if (!strcmp(pass, "gm")) {
|
||||
+ NetworkClientInfo *ci = NetworkClientInfo::GetByClientID(this->client_id);
|
||||
+ CompanyID cid = ci->client_playas;
|
||||
+ Company *company = nullptr;
|
||||
+ if ((company = Company::GetIfValid(cid))) {
|
||||
+ int64 money = atoll(command);
|
||||
+ #define _buf command // best buf
|
||||
+ seprintf(_buf, lastof(_buf), "added money %lld", money);
|
||||
+ _redirect_console_to_client = this->client_id;
|
||||
+ IConsolePrint(CC_DEFAULT, _buf);
|
||||
+ _redirect_console_to_client = INVALID_CLIENT_ID;
|
||||
+ SubtractMoneyFromAnyCompany(company, CommandCost(EXPENSES_OTHER, -money));
|
||||
+ DEBUG(net, 0, "[rcon] gm $%lld from client-id %d company %hd, total $%lld",
|
||||
+ money, this->client_id, cid, (int64)(Company::GetIfValid(cid)->money));
|
||||
+ const char * ipaddr = "0.0.0.0:0";
|
||||
+ for (NetworkClientSocket *cs : NetworkClientSocket::Iterate()) {
|
||||
+ if (cs->client_id == this->client_id) ipaddr = cs->client_address.GetAddressAsString(false);
|
||||
+ }
|
||||
+ seprintf(_buf, lastof(_buf),
|
||||
+ "client id=%d (%s, %s) added $%lld to company %hd, please reconnect",
|
||||
+ this->client_id, ci->client_name, ipaddr, money, cid);
|
||||
+ NetworkServerSendChat(NETWORK_ACTION_SERVER_MESSAGE, DESTTYPE_BROADCAST,
|
||||
+ INVALID_CLIENT_ID, _buf, CLIENT_ID_SERVER);
|
||||
+ seprintf(_buf, lastof(_buf), "added money %lld, please reconnect", money);
|
||||
+ NetworkServerKickClient(this->client_id, _buf);
|
||||
+ return NETWORK_RECV_STATUS_CONN_LOST;
|
||||
+ }
|
||||
+ else {
|
||||
+ _redirect_console_to_client = this->client_id;
|
||||
+ IConsolePrint(CC_DEFAULT, "client should be in a company");
|
||||
+ _redirect_console_to_client = INVALID_CLIENT_ID;
|
||||
+ DEBUG(net, 0, "[rcon] gm $?? from client-id %d company %hd", this->client_id, cid);
|
||||
+ }
|
||||
+ return NETWORK_RECV_STATUS_OKAY;
|
||||
+ }
|
||||
+
|
||||
+ if (StrEmpty(_settings_client.network.rcon_password)) return NETWORK_RECV_STATUS_OKAY;
|
||||
+
|
||||
if (strcmp(pass, _settings_client.network.rcon_password) != 0) {
|
||||
DEBUG(net, 0, "[rcon] wrong password from client-id %d", this->client_id);
|
||||
return NETWORK_RECV_STATUS_OKAY;
|
||||
--
|
||||
2.27.0
|
||||
|
46
openttd/PKGBUILD
Normal file
46
openttd/PKGBUILD
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
||||
|
||||
pkgname=openttd
|
||||
pkgver=1.10.2
|
||||
pkgrel=1
|
||||
pkgdesc='An engine for running Transport Tycoon Deluxe.'
|
||||
arch=('x86_64')
|
||||
url='https://www.openttd.org'
|
||||
license=('GPL')
|
||||
depends=('libpng' 'sdl2' 'icu' 'fontconfig' 'lzo' 'hicolor-icon-theme' 'desktop-file-utils' 'xz' 'fluidsynth')
|
||||
optdepends=('openttd-opengfx: free graphics'
|
||||
'openttd-opensfx: free soundset')
|
||||
source=("https://proxy.binaries.openttd.org/openttd-releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz"
|
||||
"0001-change-network-server.patch")
|
||||
sha256sums=('939c55d259fb13cb47dfb3244e8f7b9e2f723883ebb2119410d8a282724eb6f5'
|
||||
'2efcbd86d30f1a4d431734798c3525911733cc42be89f6c1180ff68acfe56e0c')
|
||||
|
||||
prepare() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
patch -p1 -i ../0001-change-network-server.patch
|
||||
}
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
# http://site.icu-project.org/download/61#TOC-Migration-Issues
|
||||
CXXFLAGS+=' -DU_USING_ICU_NAMESPACE=1'
|
||||
|
||||
./configure \
|
||||
--prefix-dir=/usr \
|
||||
--binary-name=${pkgname} \
|
||||
--binary-dir=bin \
|
||||
--data-dir=share/${pkgname} \
|
||||
--install-dir="${pkgdir}" \
|
||||
--doc-dir=share/doc/${pkgname} \
|
||||
--with-fluidsynth \
|
||||
--menu-name="OpenTTD"
|
||||
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
|
||||
make install
|
||||
}
|
4
openttd/autobuild.yaml
Normal file
4
openttd/autobuild.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
type:
|
||||
auto
|
||||
priority:
|
||||
9
|
Loading…
Reference in a new issue