mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
Revert "stride: add some files for running astron on centos & gameserver on ubuntu (we'll need to switch astron when server chanegs"
This reverts commit dc81ce6331
.
This commit is contained in:
parent
dc81ce6331
commit
1a4e919e0f
12 changed files with 20 additions and 90 deletions
BIN
dependencies/astron/astrond
vendored
BIN
dependencies/astron/astrond
vendored
Binary file not shown.
64
dependencies/astron/config/prod-test.yml
vendored
64
dependencies/astron/config/prod-test.yml
vendored
|
@ -1,64 +0,0 @@
|
||||||
daemon:
|
|
||||||
name: Developer Cluster
|
|
||||||
|
|
||||||
general:
|
|
||||||
eventlogger: 0.0.0.0:7198
|
|
||||||
dc_files:
|
|
||||||
- ../dclass/stride.dc
|
|
||||||
|
|
||||||
messagedirector:
|
|
||||||
bind: 0.0.0.0:7100
|
|
||||||
|
|
||||||
uberdogs:
|
|
||||||
- class: ClientServicesManager
|
|
||||||
id: 4665
|
|
||||||
anonymous: true
|
|
||||||
|
|
||||||
- class: ChatAgent
|
|
||||||
id: 4681
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
- class: FriendManager
|
|
||||||
id: 4501
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
- class: TTSFriendsManager
|
|
||||||
id: 4666
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
- class: GlobalPartyManager
|
|
||||||
id: 4477
|
|
||||||
anonymous: false
|
|
||||||
|
|
||||||
roles:
|
|
||||||
- type: clientagent
|
|
||||||
bind: 0.0.0.0:7199
|
|
||||||
version: "tts-dev"
|
|
||||||
client:
|
|
||||||
relocate: true
|
|
||||||
add_interest: enabled
|
|
||||||
channels:
|
|
||||||
min: 1000000000
|
|
||||||
max: 1000001000
|
|
||||||
|
|
||||||
- type: stateserver
|
|
||||||
control: 4002
|
|
||||||
|
|
||||||
- type: database
|
|
||||||
control: 4003
|
|
||||||
generate:
|
|
||||||
min: 100000000
|
|
||||||
max: 399999999
|
|
||||||
backend:
|
|
||||||
type: mongodb
|
|
||||||
server: mongodb://127.0.0.1:27017/stride
|
|
||||||
|
|
||||||
- type: dbss
|
|
||||||
database: 4003
|
|
||||||
ranges:
|
|
||||||
- min: 100000000
|
|
||||||
max: 399999999
|
|
||||||
|
|
||||||
- type: eventlogger
|
|
||||||
bind: 0.0.0.0:7198
|
|
||||||
output: ../logs/events-%y%m%d_%H%M%S.log
|
|
|
@ -20,7 +20,8 @@ roles:
|
||||||
max: 399999999
|
max: 399999999
|
||||||
backend:
|
backend:
|
||||||
type: mongodb
|
type: mongodb
|
||||||
server: mongodb://127.0.0.1:27017/stride
|
server: 127.0.0.1:21021
|
||||||
|
database: test
|
||||||
|
|
||||||
- type: dbss
|
- type: dbss
|
||||||
database: 4003
|
database: 4003
|
||||||
|
|
12
dependencies/astron/darwin/start-ai-server.sh
vendored
Executable file → Normal file
12
dependencies/astron/darwin/start-ai-server.sh
vendored
Executable file → Normal file
|
@ -1,14 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ../../..
|
cd ../..
|
||||||
|
|
||||||
#export DYLD_LIBRARY_PATH=`pwd`/Libraries.bundle
|
export DYLD_LIBRARY_PATH=`pwd`/Libraries.bundle
|
||||||
#export DYLD_FRAMEWORK_PATH="Frameworks"
|
export DYLD_FRAMEWORK_PATH="Frameworks"
|
||||||
|
|
||||||
# Define some constants for our AI server:
|
# Define some constants for our AI server:
|
||||||
MAX_CHANNELS=999999
|
MAX_CHANNELS=999999
|
||||||
STATESERVER=4002
|
STATESERVER=4002
|
||||||
ASTRON_IP="158.69.28.83:7100"
|
ASTRON_IP="127.0.0.1:7100"
|
||||||
EVENTLOGGER_IP="158.69.28.83:7198"
|
EVENTLOGGER_IP="127.0.0.1:7198"
|
||||||
|
|
||||||
# Get the user input:
|
# Get the user input:
|
||||||
read -p "District name (DEFAULT: Nuttyboro): " DISTRICT_NAME
|
read -p "District name (DEFAULT: Nuttyboro): " DISTRICT_NAME
|
||||||
|
@ -28,7 +28,7 @@ echo "==============================="
|
||||||
|
|
||||||
while [ true ]
|
while [ true ]
|
||||||
do
|
do
|
||||||
python -m toontown.ai.ServiceStart --base-channel $BASE_CHANNEL \
|
ppython -m toontown.ai.ServiceStart --base-channel $BASE_CHANNEL \
|
||||||
--max-channels $MAX_CHANNELS --stateserver $STATESERVER \
|
--max-channels $MAX_CHANNELS --stateserver $STATESERVER \
|
||||||
--astron-ip $ASTRON_IP --eventlogger-ip $EVENTLOGGER_IP \
|
--astron-ip $ASTRON_IP --eventlogger-ip $EVENTLOGGER_IP \
|
||||||
--district-name $DISTRICT_NAME
|
--district-name $DISTRICT_NAME
|
||||||
|
|
2
dependencies/astron/darwin/start-astron-cluster.sh
vendored
Executable file → Normal file
2
dependencies/astron/darwin/start-astron-cluster.sh
vendored
Executable file → Normal file
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ..
|
cd ..
|
||||||
./astrond --loglevel info config/prod-test.yml
|
./astrond --loglevel info config/cluster.yml
|
||||||
|
|
12
dependencies/astron/darwin/start-uberdog-server.sh
vendored
Executable file → Normal file
12
dependencies/astron/darwin/start-uberdog-server.sh
vendored
Executable file → Normal file
|
@ -1,14 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
cd ../../..
|
cd ../..
|
||||||
|
|
||||||
#export DYLD_LIBRARY_PATH=`pwd`/Libraries.bundle
|
export DYLD_LIBRARY_PATH=`pwd`/Libraries.bundle
|
||||||
#export DYLD_FRAMEWORK_PATH="Frameworks"
|
export DYLD_FRAMEWORK_PATH="Frameworks"
|
||||||
|
|
||||||
# Define some constants for our AI server:
|
# Define some constants for our AI server:
|
||||||
MAX_CHANNELS=999999
|
MAX_CHANNELS=999999
|
||||||
STATESERVER=4002
|
STATESERVER=4002
|
||||||
ASTRON_IP="158.69.28.83:7100"
|
ASTRON_IP="127.0.0.1:7100"
|
||||||
EVENTLOGGER_IP="158.69.28.83:7198"
|
EVENTLOGGER_IP="127.0.0.1:7198"
|
||||||
|
|
||||||
# Get the user input:
|
# Get the user input:
|
||||||
read -p "Base channel (DEFAULT: 1000000): " BASE_CHANNEL
|
read -p "Base channel (DEFAULT: 1000000): " BASE_CHANNEL
|
||||||
|
@ -25,7 +25,7 @@ echo "==============================="
|
||||||
|
|
||||||
while [ true ]
|
while [ true ]
|
||||||
do
|
do
|
||||||
python -m toontown.uberdog.ServiceStart --base-channel $BASE_CHANNEL \
|
ppython -m toontown.uberdog.ServiceStart --base-channel $BASE_CHANNEL \
|
||||||
--max-channels $MAX_CHANNELS --stateserver $STATESERVER \
|
--max-channels $MAX_CHANNELS --stateserver $STATESERVER \
|
||||||
--astron-ip $ASTRON_IP --eventlogger-ip $EVENTLOGGER_IP
|
--astron-ip $ASTRON_IP --eventlogger-ip $EVENTLOGGER_IP
|
||||||
done
|
done
|
||||||
|
|
4
dependencies/astron/dclass/stride.dc
vendored
4
dependencies/astron/dclass/stride.dc
vendored
|
@ -27,11 +27,11 @@ dclass Account {
|
||||||
uint32 ACCOUNT_AV_SET[] required db;
|
uint32 ACCOUNT_AV_SET[] required db;
|
||||||
uint32 ESTATE_ID db;
|
uint32 ESTATE_ID db;
|
||||||
AvatarPendingDel ACCOUNT_AV_SET_DEL[] db;
|
AvatarPendingDel ACCOUNT_AV_SET_DEL[] db;
|
||||||
string CREATED db;
|
uint64 CREATED db;
|
||||||
string LAST_LOGIN db;
|
string LAST_LOGIN db;
|
||||||
string ACCOUNT_ID db;
|
string ACCOUNT_ID db;
|
||||||
uint16 ACCESS_LEVEL db;
|
uint16 ACCESS_LEVEL db;
|
||||||
uint32 LAST_LOGIN_TS db;
|
uint64 LAST_LOGIN_TS db;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct BarrierData {
|
struct BarrierData {
|
||||||
|
|
0
dependencies/libpandadna.pyd
vendored
Executable file → Normal file
0
dependencies/libpandadna.pyd
vendored
Executable file → Normal file
BIN
dependencies/libpandadna.so
vendored
BIN
dependencies/libpandadna.so
vendored
Binary file not shown.
0
dev/win32/start-game.bat
Executable file → Normal file
0
dev/win32/start-game.bat
Executable file → Normal file
|
@ -26,13 +26,7 @@ from panda3d.core import loadPrcFile
|
||||||
|
|
||||||
|
|
||||||
if __debug__:
|
if __debug__:
|
||||||
try:
|
import wx, sys
|
||||||
import wx
|
|
||||||
except:
|
|
||||||
import wxversion
|
|
||||||
wxversion.select('3.0')
|
|
||||||
import wx
|
|
||||||
import sys
|
|
||||||
from direct.stdpy import threading
|
from direct.stdpy import threading
|
||||||
|
|
||||||
loadPrcFile('dependencies/config/general.prc')
|
loadPrcFile('dependencies/config/general.prc')
|
||||||
|
|
|
@ -325,18 +325,17 @@ class LoginAccountFSM(OperationFSM):
|
||||||
self.demand('SetAccount')
|
self.demand('SetAccount')
|
||||||
|
|
||||||
def enterCreateAccount(self):
|
def enterCreateAccount(self):
|
||||||
self.notify.debug('We are trying to create the account')
|
|
||||||
self.account = {
|
self.account = {
|
||||||
'ACCOUNT_AV_SET': [0] * 6,
|
'ACCOUNT_AV_SET': [0] * 6,
|
||||||
'ESTATE_ID': 0,
|
'ESTATE_ID': 0,
|
||||||
'ACCOUNT_AV_SET_DEL': [],
|
'ACCOUNT_AV_SET_DEL': [],
|
||||||
'CREATED': time.ctime(),
|
'CREATED': time.time(),
|
||||||
'LAST_LOGIN': time.ctime(),
|
'LAST_LOGIN': time.ctime(),
|
||||||
'LAST_LOGIN_TS': time.time(),
|
'LAST_LOGIN_TS': time.time(),
|
||||||
'ACCOUNT_ID': str(self.userId),
|
'ACCOUNT_ID': str(self.userId),
|
||||||
'ACCESS_LEVEL': self.accessLevel
|
'ACCESS_LEVEL': self.accessLevel
|
||||||
}
|
}
|
||||||
res = self.csm.air.dbInterface.createObject(
|
self.csm.air.dbInterface.createObject(
|
||||||
self.csm.air.dbId,
|
self.csm.air.dbId,
|
||||||
self.csm.air.dclassesByName['AccountUD'],
|
self.csm.air.dclassesByName['AccountUD'],
|
||||||
self.account,
|
self.account,
|
||||||
|
|
Loading…
Reference in a new issue