Changeset 595
- Timestamp:
- 11/22/07 10:47:47 (2 years ago)
- Files:
-
- branches/community/torque/mmo/v1/talentraspel_development/changes.txt (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/mmoide/tool/ZoneService.py (modified) (3 diffs)
- branches/community/torque/mmo/v1/talentraspel_development/publishpatch.bat (modified) (3 diffs)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/interiors/dummy (added)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/missions/base.mis (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/missions/base.ml (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/missions/base.ter (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/missions/dummy (added)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/newMission.mis (modified) (2 diffs)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/newMission.ml (added)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/newMission.ter (modified) (3 diffs)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/shapes/particles/dummy (added)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/spells/dummy (added)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/genesis/dbdict.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/genesis/zone/base (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/genesis/zone/zonemain.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/startup.bat (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/testgame.mmo/genesis/dbdict.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/upgrade.bat (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/community/torque/mmo/v1/talentraspel_development/changes.txt
r564 r595 75 75 => | THIS IS VERSION 0.0.1 !!! | 76 76 ----------------------------- 77 78 79 Changes to TMMOKIT in migration phase (migration to current trunk/branch version of original kit) 80 ================================================================================================= 81 82 - added IDE 83 - added database driven races 84 - added asset directory changes 85 - added code changes for asset directory changes 86 - adding wx/OSX work 87 - optimizations 88 - bugfixes 89 - cleanup branches/community/torque/mmo/v1/talentraspel_development/mmoide/tool/ZoneService.py
r592 r595 234 234 #spawngroups.py 235 235 f = file(zoneFolder+"/spawngroups.py", "w") 236 f.write(SPAWNGROUPSFILE )236 f.write(SPAWNGROUPSFILE%zoneID) 237 237 f.close() 238 238 … … 248 248 249 249 #mission and terrain files 250 shutil.copyfile("./starter.mmo/data/missions/base.ter", "./%s/data/missions/%s.ter"%(gameRoot, zoneID)) 251 252 f_in=file("./starter.mmo/data/missions/base.mis", "r") 250 shutil.copyfile("./starter.mmo/data/newMission.ter", "./%s/data/missions/%s.ter"%(gameRoot, zoneID)) 251 shutil.copyfile("./starter.mmo/data/newMission.ml", "./%s/data/missions/%s.ml"%(gameRoot, zoneID)) 252 253 f_in=file("./starter.mmo/data/newMission.mis", "r") 253 254 f_out=file("./%s/data/missions/%s.mis"%(gameRoot, zoneID), "w") 254 255 for line in f_in: 255 256 lineno = 0 256 lineno = string.find(line, " base.ter")257 lineno = string.find(line, "newMission.ter") 257 258 if lineno > 0: 258 line = line.replace(" base.ter", "%s.ter"%zoneID)259 line = line.replace("newMission.ter", "%s.ter"%zoneID) 259 260 f_out.write(line) 260 261 f_in.close() … … 423 424 SPAWNGROUPSFILE = """from mud.world.defines import * 424 425 from genesis.dbdict import DBSpawnInfo,DBSpawnGroup 426 427 #--- wolf 428 wolf = DBSpawnInfo(spawn="Grey Wolf") 429 sg = DBSpawnGroup(zone="%s",groupName="GREYWOLF") 430 sg.addSpawnInfo(wolf) 425 431 """ 426 432 branches/community/torque/mmo/v1/talentraspel_development/publishpatch.bat
r562 r595 9 9 echo "Building windows..." 10 10 echo "---------------------------" 11 .\packaging\client2exe.py py2exe 11 .\packaging\client2exe.py py2exe gameconfig=testgame.cfg 12 12 13 13 echo "---------------------------" 14 14 echo "Building journal..." 15 15 echo "---------------------------" 16 .\mud\worlddocs\gendocs.py 16 .\mud\worlddocs\gendocs.py gameconfig=testgame.cfg 17 17 copy .\distrib\momworld.tar.gz .\testgame.mmo\data\ui\encyclopedia\momworld.tar.gz /y 18 18 … … 20 20 echo "Building common..." 21 21 echo "---------------------------" 22 .\packaging\builddistro.py 22 .\packaging\builddistro.py gameconfig=testgame.cfg 23 23 24 24 echo "---------------------------" … … 31 31 echo "Touching Manifests..." 32 32 echo "---------------------------" 33 .\packaging\touchmanifests.py 33 .\packaging\touchmanifests.py gameconfig=testgame.cfg 34 34 35 35 start publishtosvn.bat branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/newMission.mis
r541 r595 1 1 //--- OBJECT WRITE BEGIN --- 2 2 new SimGroup(MissionGroup) { 3 CTF_scoreLimit = "5";4 3 musicTrack = "lush"; 5 4 cdTrack = "2"; 5 CTF_scoreLimit = "5"; 6 6 7 7 new ScriptObject(MissionInfo) { 8 descLines = "2"; 8 9 desc0 = "A simple new mission template."; 9 10 name = "New Mission"; 10 descLines = "2";11 11 }; 12 12 new MissionArea(MissionArea) { 13 area = "-360 -648 720 1296";13 Area = "-360 -648 720 1296"; 14 14 flightCeiling = "300"; 15 stratosphere = "-1"; 15 16 flightCeilingRange = "20"; 16 17 locked = "true"; … … 20 21 rotation = "1 0 0 0"; 21 22 scale = "1 1 1"; 23 dnStartTime = "-1"; 24 dnEndTime = "-1"; 25 materialList = "~/data/skies/sky_day.dml"; 22 26 cloudHeightPer[0] = "0.349971"; 23 27 cloudHeightPer[1] = "0.3"; 24 28 cloudHeightPer[2] = "0.199973"; 29 cloudHeightPer[3] = "0"; 30 cloudHeightPer[4] = "0"; 31 cloudHeightPer[5] = "0"; 25 32 cloudSpeed1 = "0.0005"; 26 33 cloudSpeed2 = "0.001"; 27 34 cloudSpeed3 = "0.0003"; 35 cloudSpeed4 = "0.0004"; 36 cloudSpeed5 = "0.0005"; 37 cloudSpeed6 = "0.0006"; 38 numCloudsOn = "6"; 28 39 visibleDistance = "2500"; 29 useSkyTextures = "1";30 renderBottomTexture = "0";31 SkySolidColor = "0.600000 0.600000 0.600000 1.000000";32 40 fogDistance = "300"; 33 41 fogColor = "0.600000 0.600000 0.600000 1.000000"; 42 fogStorm1 = "0"; 43 fogStorm2 = "0"; 44 fogStorm3 = "0"; 34 45 fogVolume1 = "0 0 0"; 35 46 fogVolume2 = "0 0 0"; 36 47 fogVolume3 = "0 0 0"; 37 materialList = "./skies/sky_day.dml";38 windVelocity = "1 1 0";39 windEffectPrecipitation = "1";40 48 fogVolumeColor1 = "128.000000 128.000000 128.000000 -222768174765569860000000000000000000000.000000"; 41 49 fogVolumeColor2 = "128.000000 128.000000 128.000000 0.000000"; 42 50 fogVolumeColor3 = "128.000000 128.000000 128.000000 -170698929442160050000000000000000000000.000000"; 43 locked = "true"; 51 windVelocity = "-0.0788011 0.0615661 0"; 52 SkySolidColor = "0.600000 0.600000 0.600000 1.000000"; 53 useSkyTextures = "1"; 54 renderBottomTexture = "0"; 55 noRenderBans = "0"; 56 locked = "true"; 57 windEffectPrecipitation = "1"; 44 58 }; 45 59 new Sun() { 46 direction = "0.57735 0.57735 -0.57735"; 60 azimuth = "0"; 61 elevation = "35"; 47 62 color = "0.600000 0.600000 0.600000 1.000000"; 48 63 ambient = "0.400000 0.400000 0.400000 1.000000"; 49 locked = "true"; 64 rotation = "1 0 0 0"; 65 direction = "0.57735 0.57735 -0.57735"; 66 locked = "true"; 67 scale = "1 1 1"; 50 68 position = "0 0 0"; 51 rotation = "1 0 0 0";52 scale = "1 1 1";53 69 }; 54 70 new TerrainBlock(Terrain) { 55 71 rotation = "1 0 0 0"; 56 72 scale = "1 1 1"; 57 detailTexture = "./terrains/details/detail1"; 73 dnStartTime = "-1"; 74 dnEndTime = "-1"; 75 detailTexture = "~/data/terrains/details/detail1"; 58 76 terrainFile = "./newMission.ter"; 59 77 squareSize = "8"; 78 bumpScale = "1"; 79 bumpOffset = "0.01"; 80 zeroBumpScale = "8"; 81 repeatTerrain = "0"; 60 82 locked = "true"; 61 83 position = "-1024 -1024 0"; 62 84 }; 63 new SimGroup(PlayerDropPoints) { 85 new fxSunLight(sunflare) { 86 position = "411.871 214.142 215.285"; 87 rotation = "1 0 0 0"; 88 scale = "1 1 1"; 89 dnStartTime = "-1"; 90 dnEndTime = "-1"; 91 Enable = "1"; 92 LocalFlareBitmap = "common/lighting/corona"; 93 RemoteFlareBitmap = "common/lighting/corona"; 94 SunAzimuth = "90"; 95 SunElevation = "74.0206"; 96 LockToRealSun = "1"; 97 FlareTP = "1"; 98 Colour = "1.000000 1.000000 0.550000 1.000000"; 99 Brightness = "1"; 100 FlareSize = "1"; 101 FadeTime = "0.2"; 102 BlendMode = "0"; 103 AnimColour = "1"; 104 AnimBrightness = "0"; 105 AnimRotation = "1"; 106 AnimSize = "0"; 107 AnimAzimuth = "0"; 108 AnimElevation = "0"; 109 LerpColour = "1"; 110 LerpBrightness = "1"; 111 LerpRotation = "1"; 112 LerpSize = "1"; 113 LerpAzimuth = "1"; 114 LerpElevation = "1"; 115 LinkFlareSize = "0"; 116 SingleColourKeys = "0"; 117 MinColour = "0.000000 0.000000 0.000000 1.000000"; 118 MaxColour = "1.000000 1.000000 1.000000 1.000000"; 119 MinBrightness = "0"; 120 MaxBrightness = "1"; 121 MinRotation = "0"; 122 MaxRotation = "359"; 123 minSize = "0.5"; 124 MaxSize = "1"; 125 MinAzimuth = "-360"; 126 MaxAzimuth = "360"; 127 MinElevation = "-30"; 128 MaxElevation = "210"; 129 RedKeys = "XZX"; 130 GreenKeys = "HKH"; 131 BlueKeys = "AAA"; 132 BrightnessKeys = "AZA"; 133 RotationKeys = "AZA"; 134 SizeKeys = "AZA"; 135 AzimuthKeys = "AZ"; 136 ElevationKeys = "AZ"; 137 ColourTime = "15"; 138 BrightnessTime = "5"; 139 RotationTime = "300"; 140 SizeTime = "5"; 141 AzimuthTime = "1.66667"; 142 ElevationTime = "5"; 143 }; 144 new TSDynamic(butterflies) { 145 position = "-7.71974 -129.29 93.3166"; 146 rotation = "1 0 0 0"; 147 scale = "1 1 1"; 148 dnStartTime = "-1"; 149 dnEndTime = "-1"; 150 shapeName = "~/data/shapes/fauna/danaus_plexippus_m.dts"; 151 Animation = "flyslow"; 152 radiusX = "20"; 153 radiusY = "20"; 154 radiusZ = "2"; 155 speed = "0.05"; 156 count = "32"; 157 myscale = "2"; 158 radius = "10"; 159 }; 160 new SimGroup(Spawns) { 64 161 65 new SpawnSphere() { 66 position = "78.9891 -214.86 183.615"; 67 rotation = "0 0 1 130.062"; 68 scale = "0.940827 1.97505 1"; 69 dataBlock = "SpawnSphereMarker"; 70 radius = "10"; 71 sphereWeight = "1"; 72 indoorWeight = "1"; 73 outdoorWeight = "1"; 74 homingCount = "0"; 75 locked = "false"; 76 lockCount = "0"; 162 new SimGroup(Wolves) { 163 164 new rpgSpawnPoint(GREYWOLF_WP1) { 165 position = "-51.3002 75.1875 138.878"; 166 rotation = "0.0266689 0.00431278 -0.999635 18.3788"; 167 scale = "1 1 1"; 168 dnStartTime = "-1"; 169 dnEndTime = "-1"; 170 dataBlock = "rpgSpawnPointMarker"; 171 SpawnGroup = "GREYWOLF"; 172 WanderGroup = "1"; 173 }; 174 new rpgWayPoint(WP1) { 175 position = "-76.7357 -4.63453 108.852"; 176 rotation = "-0.038661 0.00565233 0.999236 16.6482"; 177 scale = "1 1 1"; 178 dnStartTime = "-1"; 179 dnEndTime = "-1"; 180 dataBlock = "rpgWayPointMarker"; 181 WanderGroup = "1"; 182 }; 183 new rpgWayPoint(WP1) { 184 position = "-51.4193 73.9596 138.134"; 185 rotation = "0.00251476 -0.0103062 0.999944 152.577"; 186 scale = "1 1 1"; 187 dnStartTime = "-1"; 188 dnEndTime = "-1"; 189 dataBlock = "rpgWayPointMarker"; 190 WanderGroup = "1"; 191 }; 192 new rpgWayPoint(WP1) { 193 position = "-191.02 1.17464 145.255"; 194 rotation = "0.0784447 0.100235 -0.991867 104.36"; 195 scale = "1 1 1"; 196 dnStartTime = "-1"; 197 dnEndTime = "-1"; 198 dataBlock = "rpgWayPointMarker"; 199 WanderGroup = "1"; 200 }; 201 new rpgWayPoint(WP1) { 202 position = "-93.9979 -130.724 106.483"; 203 rotation = "0.00487887 0.0323514 0.999465 197.143"; 204 scale = "1 1 1"; 205 dnStartTime = "-1"; 206 dnEndTime = "-1"; 207 dataBlock = "rpgWayPointMarker"; 208 WanderGroup = "1"; 209 }; 210 new rpgSpawnPoint(GREYWOLF_WP1) { 211 position = "-93.5271 -130.3 107.047"; 212 rotation = "-0.0131784 -0.141927 0.989789 190.502"; 213 scale = "1 1 1"; 214 dnStartTime = "-1"; 215 dnEndTime = "-1"; 216 dataBlock = "rpgSpawnPointMarker"; 217 SpawnGroup = "GREYWOLF"; 218 WanderGroup = "1"; 219 }; 77 220 }; 78 221 }; branches/community/torque/mmo/v1/talentraspel_development/starter.mmo/data/newMission.ter
r540 r595 3963 3963 sS+ 3964 3964 ³ 3965 F f9RC)@?)Ìÿÿ¶:©œºšJ<<qp>ÄËÿ¹]W`=K:-<A<{šž=+*9xÎÿÿÿÿÿÿK-@GVT_9<iÆ'^U;6((9[ŒB3-68pŠ®ŒÁVyR_/TTnK[l«3966 Z2 3\*vÑÿÿ²¥~F5KD)<564EKB²ÏC7D)+|²ŠÕy+25v¬Îc3®µÊÿ~Ð{E3?'¥ÿÆ¡vLGP?C`Ôÿÿÿÿÿb.BSLwujUp7(+2')):+H)>waTt¯¬AV8eÿ¢hlJƺxnp,x}mnQ;;K.GqQS@4uK{oŸ&&-NB/H±ØÖ4/HÃÿÑHc{cnÿÿ³W/,G^\kuMeP(+(D¶ÿÿÿÿ·1}@JD\3965 Ff9RC)@?)Ìÿÿ¶:©œºšJ<<qp>ÄËÿ¹]W`=K:-<A<{šž=+*9(55(xÎÿÿÿÿÿÿK-@GVT_9<iÆ'^U;6((9[ŒB3-68pŠ®ŒÁVyR_/TTnK[l« 3966 Z23\*vÑÿÿ²¥~F5KD)<564EKB²ÏC7D)+|²ŠÕy+25v¬Îc3®µÊÿ~Ð{E3?'¥ÿÆ¡vLGP[[ 3967 ?C`Ôÿÿÿÿÿb.BSLwujUp7(+2')):+H)>waTt¯¬AV8eÿ¢hlJƺxnp,x}mnQ;;K.GqQS@4uK{oŸ&&-NB/H±ØÖ4/HÃÿÑHc{cnÿÿ³W/,G^\kuMe[ÀÌÌÀ[(+(D¶ÿÿÿÿ·1}@JD\ 3967 3968 · 3968 3969 x·D 3969 ÿÿÿÅ` 5B40_LB5gÎÿÿÿ0.@Ép<>M^Ya.°H/E] i?h;'JµT:651/26D+Lÿ[9A/tŒ{=N]I;*0+.\3970 d6/7 &NCbFI\c81:wÿÿD@M.-9cO(2<¥ÿÿªÿÿË9&,/<U^ÓÌY0pw+Uq2>b+9ŠÿÿÿÿPП+3BLL.tNÌÔB.P@Rd;:+£¢+y{:(8252CŽw=0,3mïkdT@6+B@2: ŸpTL}6|SP7(B])).OÿÿºPf2k>56&fÏÏ®³ÿÿÿ¹H-*6_n £gV@@dŠÿÿ<ZFCDVÔÿÿÿÿCʱH67NMJ]ÿÿt:63C5:O<&4€ÕF^?(9<:5

