diff options
author | lbsa71 | 2007-03-13 08:55:47 +0000 |
---|---|---|
committer | lbsa71 | 2007-03-13 08:55:47 +0000 |
commit | 0587158f9208ecf9f39a6dd0ef7cb7c5663a39f8 (patch) | |
tree | bf86015426ec54fa1f1b5902236670f752473497 /src/ServerConsole | |
parent | (no commit message) (diff) | |
download | opensim-SC_OLD-0587158f9208ecf9f39a6dd0ef7cb7c5663a39f8.zip opensim-SC_OLD-0587158f9208ecf9f39a6dd0ef7cb7c5663a39f8.tar.gz opensim-SC_OLD-0587158f9208ecf9f39a6dd0ef7cb7c5663a39f8.tar.bz2 opensim-SC_OLD-0587158f9208ecf9f39a6dd0ef7cb7c5663a39f8.tar.xz |
-- Trying to get trunk to run from first build
* Collected required dll's into /bin
* Moved timer start for great justice
* Added some Writes to Console, and a Status field
* Added dumb NullPhysicsScene and NullPhysicsActor that kicks in if Physics Plugin not specified
* Svn-ignored a shitload
Diffstat (limited to 'src/ServerConsole')
-rw-r--r-- | src/ServerConsole/ServerConsole/ServerConsole.cs | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/src/ServerConsole/ServerConsole/ServerConsole.cs b/src/ServerConsole/ServerConsole/ServerConsole.cs index 93c8114..27d97e5 100644 --- a/src/ServerConsole/ServerConsole/ServerConsole.cs +++ b/src/ServerConsole/ServerConsole/ServerConsole.cs | |||
@@ -43,12 +43,7 @@ namespace ServerConsole | |||
43 | instance = value; | 43 | instance = value; |
44 | } | 44 | } |
45 | } | 45 | } |
46 | 46 | } | |
47 | public MainConsole() | ||
48 | { | ||
49 | |||
50 | } | ||
51 | } | ||
52 | 47 | ||
53 | public abstract class ConsoleBase | 48 | public abstract class ConsoleBase |
54 | { | 49 | { |
@@ -60,16 +55,15 @@ namespace ServerConsole | |||
60 | } | 55 | } |
61 | 56 | ||
62 | public abstract void Close(); | 57 | public abstract void Close(); |
63 | 58 | ||
64 | // You know what ReadLine() and WriteLine() do, right? And Read() and Write()? Right, you do actually know C#, right? Are you actually a programmer? Do you know english? Do you find my sense of humour in comments irritating? Good, glad you're still here | 59 | public abstract void Write(string format, params object[] args); |
65 | public abstract void WriteLine(string Line) ; | 60 | |
66 | 61 | public abstract void WriteLine(string format, params object[] args); | |
62 | |||
67 | public abstract string ReadLine(); | 63 | public abstract string ReadLine(); |
68 | 64 | ||
69 | public abstract int Read() ; | 65 | public abstract int Read() ; |
70 | 66 | ||
71 | public abstract void Write(string Line) ; | ||
72 | |||
73 | // Displays a command prompt and waits for the user to enter a string, then returns that string | 67 | // Displays a command prompt and waits for the user to enter a string, then returns that string |
74 | public abstract string CmdPrompt(string prompt) ; | 68 | public abstract string CmdPrompt(string prompt) ; |
75 | 69 | ||
@@ -87,5 +81,7 @@ namespace ServerConsole | |||
87 | 81 | ||
88 | // Displays a prompt to the user and then runs the command they entered | 82 | // Displays a prompt to the user and then runs the command they entered |
89 | public abstract void MainConsolePrompt() ; | 83 | public abstract void MainConsolePrompt() ; |
90 | } | 84 | |
85 | public abstract void SetStatus( string status ); | ||
86 | } | ||
91 | } | 87 | } |