Skip to content

Commit

Permalink
Revert "Tabletop computer deconstruct fix (#1090)"
Browse files Browse the repository at this point in the history
This reverts commit 9d2a882.
  • Loading branch information
GreaseMonk committed Mar 8, 2024
1 parent 3785325 commit ffc1c84
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 64 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public sealed partial class BoardNodeEntity : IGraphNodeEntity

// Frontier - adds tabletop variants
if (args.EntityManager.TryGetComponent(container.Owner, out ConstructionComponent? constructionComponent)
&& constructionComponent.Graph == "ComputerTabletop"
&& constructionComponent.Graph == "GraphComputerTabletop"
&& args.EntityManager.TryGetComponent(board, out ComputerTabletopBoardComponent? tabletopComputer))
{
return tabletopComputer.Prototype;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
# Base structures
- type: entity
id: BaseStructureComputerTabletop
suffix: Tabletop
abstract: true
components:
- type: Sprite
sprite: _NF/Structures/Machines/computer_tabletop.rsi
drawdepth: SmallObjects
layers:
- map: ["computerLayerBody"]
sprite: _NF/Structures/Machines/computer_tabletop.rsi
state: computer_tabletop
- map: ["computerLayerKeyboard"]
sprite: _NF/Structures/Machines/computer_tabletop.rsi
state: generic_keyboard_tabletop
- map: ["computerLayerScreen"]
sprite: Structures/Machines/computers.rsi
state: generic
- map: ["computerLayerKeys"]
sprite: Structures/Machines/computers.rsi
state: generic_keys
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeAabb
bounds: "-0.45,-0.45,0.45,0.45"
density: 60
mask:
- Impassable
- LowImpassable
# - TabletopMachineMask
# layer:
# - TabletopMachineLayer

# Computers: Base Game
- type: entity
parent: [BaseStructureComputerTabletop, ComputerAlert]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,69 +1,10 @@
- type: entity
id: BaseStructureComputerTabletop
parent: BaseStructure
suffix: Tabletop
abstract: true
components:
- type: Physics
- type: Fixtures
fixtures:
fix1:
shape:
!type:PhysShapeAabb
bounds: "-0.25,-0.35,0.25,0.35"
density: 190
mask:
- TabletopMachineMask
layer:
- TabletopMachineLayer
- type: InteractionOutline
- type: Rotatable
- type: Anchorable
- type: Construction
graph: ComputerTabletop
node: frameUnsecured
- type: Sprite
sprite: _NF/Structures/Machines/computer_tabletop.rsi
drawdepth: Objects
layers:
- map: [ "computerLayerBody" ]
sprite: _NF/Structures/Machines/computer_tabletop.rsi
state: computer_tabletop
- map: [ "computerLayerKeyboard" ]
sprite: _NF/Structures/Machines/computer_tabletop.rsi
state: generic_keyboard_tabletop
- map: [ "computerLayerScreen" ]
sprite: Structures/Machines/computers.rsi
state: generic
- map: [ "computerLayerKeys" ]
sprite: Structures/Machines/computers.rsi
state: generic_keys
- type: Damageable
damageContainer: Inorganic
damageModifierSet: Electronic
- type: Destructible
thresholds:
- trigger:
!type:DamageTrigger
damage: 100
behaviors:
- !type:PlaySoundBehavior
sound:
collection: GlassBreak
- !type:ChangeConstructionNodeBehavior
node: monitorBroken
- !type:DoActsBehavior
acts: ["Destruction"]
- type: StaticPrice
price: 100

- type: entity
parent: BaseStructureComputerTabletop
parent: ComputerFrame
name: computer
id: ComputerTabletopFrame
components:
- type: Construction
graph: ComputerTabletop
graph: GraphComputerTabletop
node: frameUnsecured
containers:
- board
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- type: constructionGraph
id: ComputerTabletop
id: GraphComputerTabletop
start: start
graph:
- node: start
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/_NF/Recipes/Construction/machines.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- type: construction
name: computer (tabletop)
id: ConstructionComputerTabletop
graph: ComputerTabletop
graph: GraphComputerTabletop
startNode: start
targetNode: tabletop computer
category: construction-category-machines
Expand Down

0 comments on commit ffc1c84

Please sign in to comment.