-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pulling resource extractors & train buildings into common types
- re: #5
- Loading branch information
1 parent
d6c6c1e
commit 34bc85f
Showing
26 changed files
with
891 additions
and
974 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 7 additions & 23 deletions
30
generated-types/1.0/classes/CoreUObject/FGBuildableFrackingActivator.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 8 additions & 13 deletions
21
generated-types/1.0/classes/CoreUObject/FGBuildableFrackingExtractor.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 8 additions & 24 deletions
32
generated-types/1.0/classes/CoreUObject/FGBuildableRailroadSignal.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 7 additions & 11 deletions
18
generated-types/1.0/classes/CoreUObject/FGBuildableRailroadStation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 6 additions & 26 deletions
32
generated-types/1.0/classes/CoreUObject/FGBuildableTrainPlatform.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,10 @@ | ||
import {UnrealEngineString, StringStartsWith} from '../../utils/validators'; | ||
|
||
import {FGBuildable__consumes_power_base__type} from './FGBuildable'; | ||
|
||
import {boolean__type} from '../../../common/common/scalar'; | ||
|
||
import { | ||
mPlatformDockingStatus__type, | ||
empty_object__type, | ||
} from '../../../common/common/unassigned'; | ||
import {common_base__FGBuildableTrainPlatform__base__type} from '../../../common/classes/CoreUObject/FGBuildableTrainPlatform'; | ||
|
||
export type FGBuildableTrainPlatform__base__type = | ||
FGBuildable__consumes_power_base__type & { | ||
mPlatformConnections: [ | ||
UnrealEngineString< | ||
'/Script/FactoryGame.FGTrainPlatformConnection', | ||
StringStartsWith<'/Game/FactoryGame/Buildable/Factory/Train/Station/'> | ||
>, | ||
...UnrealEngineString< | ||
'/Script/FactoryGame.FGTrainPlatformConnection', | ||
StringStartsWith<'/Game/FactoryGame/Buildable/Factory/Train/Station/'> | ||
>[], | ||
]; | ||
mIsOrientationReversed: boolean__type; | ||
mPlatformDockingStatus: mPlatformDockingStatus__type; | ||
mSavedDockingStatus: mPlatformDockingStatus__type; | ||
mDockingSequenceTimerHandle: empty_object__type; | ||
mIdleUpdateTimerHandle: empty_object__type; | ||
mDockWasCancelled: boolean__type; | ||
}; | ||
FGBuildableTrainPlatform__base__merged__type; | ||
|
||
export type FGBuildableTrainPlatform__base__merged__type = | ||
common_base__FGBuildableTrainPlatform__base__type & | ||
FGBuildable__consumes_power_base__type; |
61 changes: 14 additions & 47 deletions
61
generated-types/1.0/classes/CoreUObject/FGBuildableTrainPlatformCargo.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
generated-types/common/classes/CoreUObject/FGBuildableFrackingActivator.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { | ||
None__type, | ||
empty_object__type, | ||
UnrealEngineString__array__type, | ||
} from '../../common/unassigned'; | ||
|
||
import { | ||
decimal_string__type, | ||
boolean__type, | ||
integer_string__type, | ||
} from '../../common/scalar'; | ||
|
||
import {common_base__FGBuildable__extractor_base__shared__type} from './FGBuildable'; | ||
|
||
export type common_base__FGBuildableFrackingActivator__type = | ||
common_base__FGBuildable__extractor_base__shared__type & { | ||
mExtractorTypeName?: None__type; | ||
CurrentPotentialChangedDelegate: empty_object__type; | ||
ConnectedExtractorCountChangedDelegate: empty_object__type; | ||
mActivationStartupTime: decimal_string__type; | ||
mActivationStartupTimer: decimal_string__type; | ||
mSatelliteActivationComplete: boolean__type; | ||
mSatelliteNodeCount: integer_string__type; | ||
mConnectedExtractorCount: integer_string__type; | ||
mDefaultPotentialExtractionPerMinute: decimal_string__type; | ||
mAllowedResources: UnrealEngineString__array__type; | ||
}; |
16 changes: 16 additions & 0 deletions
16
generated-types/common/classes/CoreUObject/FGBuildableFrackingExtractor.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { | ||
None__type, | ||
UnrealEngineString__array__type, | ||
} from '../../common/unassigned'; | ||
|
||
import {common_base__FGBuildable__extractor_base__type} from './FGBuildable'; | ||
|
||
export type common_base__FGBuildableFrackingExtractor__type = | ||
common_base__FGBuildable__extractor_base__type & { | ||
mAllowedResourceForms: [ | ||
'RF_LIQUID' | 'RF_GAS', | ||
...('RF_LIQUID' | 'RF_GAS')[], | ||
]; | ||
mExtractorTypeName: None__type; | ||
mAllowedResources: UnrealEngineString__array__type; | ||
}; |
25 changes: 25 additions & 0 deletions
25
generated-types/common/classes/CoreUObject/FGBuildableRailroadSignal.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import {mAspect__type, empty_object__type} from '../../common/unassigned'; | ||
|
||
import { | ||
boolean__type, | ||
integer_string__type, | ||
decimal_string__type, | ||
} from '../../common/scalar'; | ||
|
||
import {common_base__FGBuildable__base__type} from './FGBuildable'; | ||
|
||
export type common_base__FGBuildableRailroadSignal__type = | ||
common_base__FGBuildable__base__type & { | ||
mPreviousAspect?: mAspect__type; | ||
mOnAspectChangedDelegate: empty_object__type; | ||
mOnBlockValidationChangedDelegate: empty_object__type; | ||
mDrawDebugVisualState: boolean__type; | ||
mGuardedConnections: ''; | ||
mObservedConnections: ''; | ||
mAspect: mAspect__type; | ||
mBlockValidation: 'RBV_Unvalidated'; | ||
mIsPathSignal: boolean__type; | ||
mIsBiDirectional: boolean__type; | ||
mVisualState: integer_string__type; | ||
mSignificanceRange: decimal_string__type; | ||
}; |
13 changes: 13 additions & 0 deletions
13
generated-types/common/classes/CoreUObject/FGBuildableRailroadStation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import {boolean__type} from '../../common/scalar'; | ||
|
||
import {mDockingRuleSet__type} from '../../common/unassigned'; | ||
|
||
import {common_base__FGBuildableTrainPlatformCargo__FGBuildableRailroadStation__type} from './FGBuildableTrainPlatformCargo'; | ||
|
||
export type common_base__FGBuildableRailroadStation__type = | ||
common_base__FGBuildableTrainPlatformCargo__FGBuildableRailroadStation__type & { | ||
mMapText: 'Train Station'; | ||
mShouldTeleportHere: boolean__type; | ||
mDockedPlatformList: ''; | ||
mCurrentDockedWithRuleSet: mDockingRuleSet__type; | ||
}; |
30 changes: 30 additions & 0 deletions
30
generated-types/common/classes/CoreUObject/FGBuildableTrainPlatform.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import {UnrealEngineString, StringStartsWith} from '../../utils/validators'; | ||
|
||
import {boolean__type} from '../../common/scalar'; | ||
|
||
import { | ||
mPlatformDockingStatus__type, | ||
empty_object__type, | ||
} from '../../common/unassigned'; | ||
|
||
import {common_base__FGBuildable__consumes_power_base__type} from './FGBuildable'; | ||
|
||
export type common_base__FGBuildableTrainPlatform__base__type = | ||
common_base__FGBuildable__consumes_power_base__type & { | ||
mPlatformConnections: [ | ||
UnrealEngineString< | ||
'/Script/FactoryGame.FGTrainPlatformConnection', | ||
StringStartsWith<'/Game/FactoryGame/Buildable/Factory/Train/Station/'> | ||
>, | ||
...UnrealEngineString< | ||
'/Script/FactoryGame.FGTrainPlatformConnection', | ||
StringStartsWith<'/Game/FactoryGame/Buildable/Factory/Train/Station/'> | ||
>[], | ||
]; | ||
mIsOrientationReversed: boolean__type; | ||
mPlatformDockingStatus: mPlatformDockingStatus__type; | ||
mSavedDockingStatus: mPlatformDockingStatus__type; | ||
mDockingSequenceTimerHandle: empty_object__type; | ||
mIdleUpdateTimerHandle: empty_object__type; | ||
mDockWasCancelled: boolean__type; | ||
}; |
Oops, something went wrong.