Skip to content

Commit

Permalink
sounds, traffic, syntax correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Espen Killi committed Dec 1, 2018
1 parent 44613ff commit 2a1d4ce
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gui/base/GuiDataSource.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GuiDataSource = {}

GuiDataSource.EMPTY_SOURCE = {
data = {}
data = {},
changeListeners = {}
}

Expand Down
106 changes: 106 additions & 0 deletions listOfDefaultSpecializations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# data/specializations.xml

| name | className |
| ---- | --------- |
| aiVehicle | AIVehicle
| aiImplement | AIImplement
| aiConveyorBelt | AIConveyorBelt
| animatedVehicle | AnimatedVehicle
| articulatedAxis | ArticulatedAxis
| attachable | Attachable
| attacherJointControl | AttacherJointControl
| attacherJoints | AttacherJoints
| baleGrab | BaleGrab
| baleLoader | BaleLoader
| baler | Baler
| baleWrapper | BaleWrapper
| baseMaterial | BaseMaterial
| bunkerSiloCompacter | BunkerSiloCompacter
| bunkerSiloInteractor | BunkerSiloInteractor
| buyableBale | BuyableBale
| cctdrivable | CCTDrivable
| combine | Combine
| connectionHoses | ConnectionHoses
| conveyorBelt | ConveyorBelt
| cover | Cover
| crabSteering | CrabSteering
| crawlers | Crawlers
| cultivator | Cultivator
| cutter | Cutter
| cylindered | Cylindered
| cylinderedFoldable | CylinderedFoldable
| dashboard | Dashboard
| dischargeable | Dischargeable
| drivable | Drivable
| dynamicallyLoadedParts | DynamicallyLoadedParts
| dynamicMountAttacher | DynamicMountAttacher
| enterable | Enterable
| fertilizingCultivator | FertilizingCultivator
| fertilizingSowingMachine | FertilizingSowingMachine
| fillTriggerVehicle | FillTriggerVehicle
| fillUnit | FillUnit
| fillVolume | FillVolume
| foldable | Foldable
| foliageBending | FoliageBending
| frontloaderAttacher | FrontloaderAttacher
| fruitPreparer | FruitPreparer
| groundAdjustedNodes | GroundAdjustedNodes
| groundReference | GroundReference
| honk | Honk
| hookLiftTrailer | HookLiftTrailer
| hookLiftContainer | HookLiftContainer
| hookLiftContainer | HookLiftContainer
| ikChains | IKChains
| jigglingParts | JigglingParts
| leveler | Leveler
| lights | Lights
| livestockTrailer | LivestockTrailer
| locomotive | Locomotive
| logGrab | LogGrab
| manureBarrel | ManureBarrel
| mixerWagon | MixerWagon
| motorized | Motorized
| mountable | Mountable
| mower | Mower
| pickup | Pickup
| pipe | Pipe
| plow | Plow
| powerConsumer | PowerConsumer
| powerTakeOffs | PowerTakeOffs
| randomlyMovingParts | RandomlyMovingParts
| receivingHopper | ReceivingHopper
| reverseDriving | ReverseDriving
| rideable | Rideable
| ridgeMarker | RidgeMarker
| roller | Roller
| ropes | Ropes
| semiTrailerFront | SemiTrailerFront
| shovel | Shovel
| slopeCompensation | SlopeCompensation
| sowingMachine | SowingMachine
| speedRotatingParts | SpeedRotatingParts
| splineVehicle | SplineVehicle
| sprayer | Sprayer
| strawBlower | StrawBlower
| stumpCutter | StumpCutter
| suspensions | Suspensions
| tedder | Tedder
| tensionBelts | TensionBelts
| tensionBeltObject | TensionBeltObject
| tipOccluder | TipOccluder
| trailer | Trailer
| treePlanter | TreePlanter
| treeSaw | TreeSaw
| turnOnVehicle | TurnOnVehicle
| washable | Washable
| waterTrailer | WaterTrailer
| wearable | Wearable
| weeder | Weeder
| wheels | Wheels
| windrower | Windrower
| wipers | Wipers
| woodCrusher | WoodCrusher
| woodHarverster | WoodHarvester
| workArea | WorkArea
| workMode | WorkMode
| workParticles | WorkParticles
Empty file added sounds/AmbientSoundManager.lua
Empty file.
Empty file added sounds/AmbientSoundUtil.lua
Empty file.
21 changes: 21 additions & 0 deletions traffic/TrafficSystem.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
TrafficSystem = {}

TrafficSystem.classId = 78.000000
TrafficSystem.className = 'TrafficSystem'

function TrafficSystem:onCreate() end
function TrafficSystem:new() end
function TrafficSystem:isa() end
function TrafficSystem:setEnabled() end
function TrafficSystem:delete() end
function TrafficSystem:superClass() end
function TrafficSystem:onIndoorStateChanged() end
function TrafficSystem:updateTick() end
function TrafficSystem:update() end
function TrafficSystem:reset() end
function TrafficSystem:copy() end
function TrafficSystem:class() end
function TrafficSystem:writeUpdateStream() end
function TrafficSystem:readUpdateStream() end
function TrafficSystem:setNightTimeRange() end
function TrafficSystem:load() end

0 comments on commit 2a1d4ce

Please sign in to comment.