mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 04:27:16 +02:00
Even more death and destruction. A lot more stuff moved to src/. A lot more bugs probably introduced.
This commit is contained in:
parent
d3808c1ea2
commit
4bb00013ae
28 changed files with 45 additions and 38 deletions
|
|
@ -1,5 +1,9 @@
|
|||
import ansi
|
||||
"""
|
||||
Models for the help system.
|
||||
"""
|
||||
from django.db import models
|
||||
|
||||
from src import ansi
|
||||
from apps.helpsys.managers.helpentry import HelpEntryManager
|
||||
|
||||
class HelpEntry(models.Model):
|
||||
|
|
|
|||
|
|
@ -3,15 +3,16 @@ import re
|
|||
from django.db import models
|
||||
from django.contrib.auth.models import User, Group
|
||||
|
||||
import scripthandler
|
||||
import defines_global
|
||||
import ansi
|
||||
import src.flags
|
||||
from apps.config.models import ConfigValue
|
||||
from apps.objects.util import object as util_object
|
||||
from apps.objects.managers.commchannel import CommChannelManager
|
||||
from apps.objects.managers.object import ObjectManager
|
||||
from apps.objects.managers.attribute import AttributeManager
|
||||
from src import scripthandler
|
||||
import defines_global
|
||||
from src import ansi
|
||||
# Import as the absolute path to avoid local variable clashes.
|
||||
import src.flags
|
||||
|
||||
class Attribute(models.Model):
|
||||
"""
|
||||
|
|
@ -894,4 +895,4 @@ class CommChannelMessage(models.Model):
|
|||
list_display = ('channel', 'message')
|
||||
|
||||
import functions_general
|
||||
import session_mgr
|
||||
from src import session_mgr
|
||||
|
|
|
|||
|
|
@ -1,13 +1,14 @@
|
|||
"""
|
||||
Comsys functions.
|
||||
"""
|
||||
import time, datetime
|
||||
import time
|
||||
import datetime
|
||||
|
||||
from django.utils import simplejson
|
||||
|
||||
from apps.objects.models import CommChannel, CommChannelMessage
|
||||
import session_mgr
|
||||
import ansi
|
||||
from src import session_mgr
|
||||
from src import ansi
|
||||
|
||||
def plr_get_cdict(session):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ General functions that don't fit neatly under any given category.
|
|||
"""
|
||||
import os
|
||||
import textwrap
|
||||
import session_mgr
|
||||
from src import session_mgr
|
||||
|
||||
def wildcard_to_regexp(instring):
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -28,8 +28,8 @@ BASE_PATH = '/home/evennia/evennia'
|
|||
MEDIA_ROOT = '%s/media' % (BASE_PATH)
|
||||
|
||||
# Absolute path to the directory that has the script tree in it. (no trailing slash)
|
||||
# Example: "/home/evennia/scripts"
|
||||
SCRIPT_ROOT = '%s/scripts' % (BASE_PATH)
|
||||
# Example: "/home/evennia/src/scripts"
|
||||
SCRIPT_ROOT = '%s/src/scripts' % (BASE_PATH)
|
||||
|
||||
# 'postgresql', 'mysql', 'mysql_old', 'sqlite3' or 'ado_mssql'.
|
||||
DATABASE_ENGINE = 'sqlite3'
|
||||
|
|
|
|||
|
|
@ -1,10 +1,3 @@
|
|||
import commands.general
|
||||
import commands.privileged
|
||||
import commands.comsys
|
||||
import commands.unloggedin
|
||||
import commands.info
|
||||
import commands.objmanip
|
||||
|
||||
"""
|
||||
Command Table Entries
|
||||
---------------------
|
||||
|
|
@ -16,6 +9,12 @@ stuff. If the command is open to all (or you want to implement your own
|
|||
privilege checking in the command function), use None in place of the
|
||||
permissions tuple.
|
||||
"""
|
||||
import commands.general
|
||||
import commands.privileged
|
||||
import commands.comsys
|
||||
import commands.unloggedin
|
||||
import commands.info
|
||||
import commands.objmanip
|
||||
|
||||
# -- Unlogged-in Command Table --
|
||||
# Command Name Command Function Privilege Tuple
|
||||
|
|
@ -9,7 +9,7 @@ from django.conf import settings
|
|||
import functions_general
|
||||
import functions_comsys
|
||||
import defines_global
|
||||
import ansi
|
||||
from src import ansi
|
||||
|
||||
def cmd_addcom(cdat):
|
||||
"""
|
||||
|
|
@ -11,8 +11,8 @@ from apps.helpsys.models import HelpEntry
|
|||
from apps.objects.models import Object
|
||||
import functions_general
|
||||
import defines_global
|
||||
import session_mgr
|
||||
import ansi
|
||||
from src import session_mgr
|
||||
from src import ansi
|
||||
|
||||
def cmd_password(cdat):
|
||||
"""
|
||||
|
|
@ -11,8 +11,10 @@ if not functions_general.host_os_is('nt'):
|
|||
# Don't import the resource module if the host OS is Windows.
|
||||
import resource
|
||||
|
||||
import django
|
||||
|
||||
from apps.objects.models import Object
|
||||
import scheduler
|
||||
from src import scheduler
|
||||
import defines_global
|
||||
|
||||
def cmd_version(cdat):
|
||||
|
|
@ -21,7 +23,8 @@ def cmd_version(cdat):
|
|||
"""
|
||||
session = cdat['session']
|
||||
retval = "-"*50 +"\n\r"
|
||||
retval += "Evennia %s\n\r" % (defines_global.EVENNIA_VERSION,)
|
||||
retval += " Evennia %s\n\r" % (defines_global.EVENNIA_VERSION,)
|
||||
retval += " Django %s\n\r" % (django.get_version())
|
||||
retval += "-"*50
|
||||
session.msg(retval)
|
||||
|
||||
|
|
@ -2,9 +2,10 @@
|
|||
These commands typically are to do with building or modifying Objects.
|
||||
"""
|
||||
from apps.objects.models import Object
|
||||
# We'll import this as the full path to avoid local variable clashes.
|
||||
import src.flags
|
||||
import ansi
|
||||
import session_mgr
|
||||
from src import ansi
|
||||
from src import session_mgr
|
||||
|
||||
def cmd_teleport(cdat):
|
||||
"""
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
from apps.objects.models import Object
|
||||
import defines_global
|
||||
import functions_general
|
||||
import ansi
|
||||
from src import ansi
|
||||
|
||||
"""
|
||||
This file contains commands that require special permissions to use. These
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
import time
|
||||
from twisted.internet import task
|
||||
import events
|
||||
from src import events
|
||||
"""
|
||||
This file contains the event scheduler system.
|
||||
|
||||
|
|
@ -2,8 +2,7 @@
|
|||
This will be the base object type/interface that all scripts are derived from by
|
||||
default. It will have the necessary outline for developers to sub-class and override.
|
||||
"""
|
||||
|
||||
import ansi
|
||||
from src import ansi
|
||||
|
||||
class BasicObject:
|
||||
def __init__(self, source_obj):
|
||||
|
|
@ -10,13 +10,12 @@ from django.db import connection
|
|||
from django.conf import settings
|
||||
|
||||
from apps.config.models import CommandAlias, ConfigValue
|
||||
from session import SessionProtocol
|
||||
import settings
|
||||
import scheduler
|
||||
from src.session import SessionProtocol
|
||||
from src import scheduler
|
||||
import functions_general
|
||||
import session_mgr
|
||||
import cmdtable
|
||||
import initial_setup
|
||||
from src import session_mgr
|
||||
from src import cmdtable
|
||||
from src import initial_setup
|
||||
|
||||
class EvenniaService(service.Service):
|
||||
|
||||
|
|
@ -11,6 +11,6 @@ mv -f $BASE_PATH/logs/evennia.log $BASE_PATH/logs/evennia.logs.old
|
|||
## mode instead of having to uncomment crap.
|
||||
|
||||
## Interactive mode. Good for development and debugging.
|
||||
twistd -n --logfile=logs/evennia.log --python=server.py
|
||||
twistd -n --logfile=logs/evennia.log --python=src/server.py
|
||||
## Stand-alone mode. Good for running games.
|
||||
#twistd --logfile=logs/evennia.log --python=server.py
|
||||
#twistd --logfile=logs/evennia.log --python=src/server.py
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue