diff options
author | Sean Dague | 2008-10-01 18:57:37 +0000 |
---|---|---|
committer | Sean Dague | 2008-10-01 18:57:37 +0000 |
commit | 5d5a886b3401d4b229485014186b917c9bb1b530 (patch) | |
tree | 1423bd40b6a431aacf4c64bed44f663ffe23162a /share/ruby/config.rb | |
parent | remove mysql_connection.ini.example, no one should be using this any (diff) | |
download | opensim-SC_OLD-5d5a886b3401d4b229485014186b917c9bb1b530.zip opensim-SC_OLD-5d5a886b3401d4b229485014186b917c9bb1b530.tar.gz opensim-SC_OLD-5d5a886b3401d4b229485014186b917c9bb1b530.tar.bz2 opensim-SC_OLD-5d5a886b3401d4b229485014186b917c9bb1b530.tar.xz |
remove these old ruby grid servers as they are really old (like a year
old). A project like this is welcomed to come back on opensim forge.
Diffstat (limited to 'share/ruby/config.rb')
-rwxr-xr-x | share/ruby/config.rb | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/share/ruby/config.rb b/share/ruby/config.rb deleted file mode 100755 index 8484274..0000000 --- a/share/ruby/config.rb +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | # Various config data | ||
2 | |||
3 | class SimConfig | ||
4 | attr_reader :cfgSimName, :cfgSimIP, :cfgSimPort, :cfgSimX, | ||
5 | :cfgSimX, :cfgSimY, :cfgAssetServerUrl, :cfgUserServerUrl | ||
6 | |||
7 | def initialize | ||
8 | @cfgSimName = "DalienLand" | ||
9 | @cfgSimIP = "192.168.1.103" | ||
10 | @cfgSimPort = "9000" | ||
11 | @cfgSimX = 997 | ||
12 | @cfgSimY = 996 | ||
13 | @cfgSimX = 1000 | ||
14 | @cfgSimY = 1000 | ||
15 | @cfgAssetServerUrl = "http://192.168.1.103:8003/" | ||
16 | @cfgUserServerUrl = "http://192.168.1.103:8003/" | ||
17 | end | ||
18 | |||
19 | end | ||
20 | |||
21 | |||
22 | class UUID | ||
23 | def initialize | ||
24 | @uuid = rand(1<<128) | ||
25 | end | ||
26 | def to_dashed_s | ||
27 | part1 = @uuid & 0xFFFFFFFFFFFF | ||
28 | part2 = (@uuid >> 48) && 0xFFFF | ||
29 | part3 = (@uuid >> (48 + 16)) & 0xFFFF | ||
30 | part4 = (@uuid >> (48 + 32)) & 0xFFFF | ||
31 | part5 = @uuid >> (128-32) | ||
32 | return sprintf "%08x-%04x-%04x-%04x-%012x", part5, part4, part3, part2, part1 | ||
33 | end | ||
34 | end | ||
35 | |||
36 | print UUID.new.to_dashed_s | ||
37 | |||
38 | |||