diff --git a/Barotrauma/BarotraumaClient/Source/GameMain.cs b/Barotrauma/BarotraumaClient/Source/GameMain.cs
index 283593ae5..8756a1c17 100644
--- a/Barotrauma/BarotraumaClient/Source/GameMain.cs
+++ b/Barotrauma/BarotraumaClient/Source/GameMain.cs
@@ -159,6 +159,11 @@ namespace Barotrauma
public GameMain()
{
+ #if !DEBUG && OSX
+ string macPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "Library/Barotrauma");
+ Directory.SetCurrentDirectory(macPath);
+ #endif
+
GraphicsDeviceManager = new GraphicsDeviceManager(this);
Window.Title = "Barotrauma";
diff --git a/Barotrauma/BarotraumaClient/Source/Screens/CampaignSetupUI.cs b/Barotrauma/BarotraumaClient/Source/Screens/CampaignSetupUI.cs
index d4d830e8b..c387484f4 100644
--- a/Barotrauma/BarotraumaClient/Source/Screens/CampaignSetupUI.cs
+++ b/Barotrauma/BarotraumaClient/Source/Screens/CampaignSetupUI.cs
@@ -75,19 +75,18 @@ namespace Barotrauma
}
new GUITextBlock(new RectTransform(new Vector2(1.0f, 0.02f), leftColumn.RectTransform) { MinSize = new Point(0, 20) }, TextManager.Get("SelectedSub") + ":");
- var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.05f), leftColumn.RectTransform), isHorizontal: true)
- {
- Stretch = true
- };
subList = new GUIListBox(new RectTransform(new Vector2(1.0f, 0.65f), leftColumn.RectTransform)) { ScrollBarVisible = true };
- var searchTitle = new GUITextBlock(new RectTransform(new Vector2(0.001f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterLeft, font: GUI.Font);
- var searchBox = new GUITextBox(new RectTransform(new Vector2(1.0f, 1.0f), filterContainer.RectTransform, Anchor.CenterRight), font: GUI.Font);
- searchBox.OnSelected += (sender, userdata) => { searchTitle.Visible = false; };
- searchBox.OnDeselected += (sender, userdata) => { searchTitle.Visible = true; };
+ var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.07f), leftColumn.RectTransform), isHorizontal: true)
+ {
+ Stretch = true,
+ RelativeSpacing = 0.02f
+ };
+ new GUITextBlock(new RectTransform(new Vector2(0.3f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterLeft, font: GUI.Font);
+ var searchBox = new GUITextBox(new RectTransform(new Vector2(0.9f, 1.0f), filterContainer.RectTransform), font: GUI.Font);
searchBox.OnTextChanged += (textBox, text) => { FilterSubs(subList, text); return true; };
- var clearButton = new GUIButton(new RectTransform(new Vector2(0.075f, 1.0f), filterContainer.RectTransform), "x")
+ var clearButton = new GUIButton(new RectTransform(new Vector2(0.15f, 1.0f), filterContainer.RectTransform), "x")
{
OnClicked = (btn, userdata) => { searchBox.Text = ""; FilterSubs(subList, ""); searchBox.Flash(Color.White); return true; }
};
diff --git a/Barotrauma/BarotraumaClient/Source/Screens/CampaignUI.cs b/Barotrauma/BarotraumaClient/Source/Screens/CampaignUI.cs
index 44859a667..46c54674e 100644
--- a/Barotrauma/BarotraumaClient/Source/Screens/CampaignUI.cs
+++ b/Barotrauma/BarotraumaClient/Source/Screens/CampaignUI.cs
@@ -182,24 +182,23 @@ namespace Barotrauma
{
TextGetter = GetMoney
};
- var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(0.5f, 0.4f), storeContentTop.RectTransform), isHorizontal: true)
+ var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(0.5f, 0.5f), storeContentTop.RectTransform), isHorizontal: true)
{
- Stretch = true
+ Stretch = true,
+ RelativeSpacing = 0.02f
};
- var searchTitle = new GUITextBlock(new RectTransform(new Vector2(0.001f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterLeft, font: GUI.Font);
- searchBox = new GUITextBox(new RectTransform(new Vector2(1.0f, 1.0f), filterContainer.RectTransform), font: GUI.Font);
- searchBox.OnSelected += (sender, userdata) => { searchTitle.Visible = false; };
- searchBox.OnDeselected += (sender, userdata) => { searchTitle.Visible = true; };
-
+ new GUITextBlock(new RectTransform(new Vector2(0.5f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterRight, font: GUI.Font);
+ searchBox = new GUITextBox(new RectTransform(new Vector2(0.8f, 1.0f), filterContainer.RectTransform), font: GUI.Font);
searchBox.OnTextChanged += (textBox, text) => { FilterStoreItems(null, text); return true; };
- var clearButton = new GUIButton(new RectTransform(new Vector2(0.1f, 1.0f), filterContainer.RectTransform), "x")
+ var clearButton = new GUIButton(new RectTransform(new Vector2(0.2f, 1.0f), filterContainer.RectTransform), "x")
{
OnClicked = (btn, userdata) => { searchBox.Text = ""; FilterStoreItems(selectedItemCategory, ""); searchBox.Flash(Color.White); return true; }
};
var storeItemLists = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.8f), storeContent.RectTransform), isHorizontal: true)
{
- Stretch = true
+ Stretch = true,
+ RelativeSpacing = 0.02f
};
myItemList = new GUIListBox(new RectTransform(new Vector2(0.5f, 1.0f), storeItemLists.RectTransform));
storeItemList = new GUIListBox(new RectTransform(new Vector2(0.5f, 1.0f), storeItemLists.RectTransform))
diff --git a/Barotrauma/BarotraumaClient/Source/Screens/SubEditorScreen.cs b/Barotrauma/BarotraumaClient/Source/Screens/SubEditorScreen.cs
index 8936318f5..208f7ea55 100644
--- a/Barotrauma/BarotraumaClient/Source/Screens/SubEditorScreen.cs
+++ b/Barotrauma/BarotraumaClient/Source/Screens/SubEditorScreen.cs
@@ -1298,12 +1298,6 @@ namespace Barotrauma
var paddedLoadFrame = new GUILayoutGroup(new RectTransform(new Vector2(0.9f, 0.9f), innerFrame.RectTransform, Anchor.Center)) { Stretch = true, RelativeSpacing = 0.02f };
var deleteButtonHolder = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.1f), paddedLoadFrame.RectTransform, Anchor.Center));
-
- var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.1f), paddedLoadFrame.RectTransform), isHorizontal: true)
- {
- Stretch = true
- };
-
var subList = new GUIListBox(new RectTransform(new Vector2(1.0f, 1.0f), paddedLoadFrame.RectTransform))
{
ScrollBarVisible = true,
@@ -1314,13 +1308,15 @@ namespace Barotrauma
}
};
- var searchTitle = new GUITextBlock(new RectTransform(new Vector2(0.001f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterLeft, font: GUI.Font);
- var searchBox = new GUITextBox(new RectTransform(new Vector2(1.0f, 1.0f), filterContainer.RectTransform), font: GUI.Font);
- searchBox.OnSelected += (sender, userdata) => { searchTitle.Visible = false; };
- searchBox.OnDeselected += (sender, userdata) => { searchTitle.Visible = true; };
-
+ var filterContainer = new GUILayoutGroup(new RectTransform(new Vector2(1.0f, 0.1f), paddedLoadFrame.RectTransform), isHorizontal: true)
+ {
+ Stretch = true,
+ RelativeSpacing = 0.02f
+ };
+ new GUITextBlock(new RectTransform(new Vector2(0.3f, 1.0f), filterContainer.RectTransform), TextManager.Get("FilterMapEntities"), textAlignment: Alignment.CenterLeft, font: GUI.Font);
+ var searchBox = new GUITextBox(new RectTransform(new Vector2(0.9f, 1.0f), filterContainer.RectTransform), font: GUI.Font);
searchBox.OnTextChanged += (textBox, text) => { FilterSubs(subList, text); return true; };
- var clearButton = new GUIButton(new RectTransform(new Vector2(0.1f, 1.0f), filterContainer.RectTransform), "x")
+ var clearButton = new GUIButton(new RectTransform(new Vector2(0.15f, 1.0f), filterContainer.RectTransform), "x")
{
OnClicked = (btn, userdata) => { searchBox.Text = ""; FilterSubs(subList, ""); searchBox.Flash(Color.White); return true; }
};
diff --git a/Barotrauma/BarotraumaShared/SharedContent.projitems b/Barotrauma/BarotraumaShared/SharedContent.projitems
index 7c139901c..dfe87235b 100644
--- a/Barotrauma/BarotraumaShared/SharedContent.projitems
+++ b/Barotrauma/BarotraumaShared/SharedContent.projitems
@@ -445,24 +445,9 @@
PreserveNewest
-
- PreserveNewest
-
-
- PreserveNewest
-
-
- PreserveNewest
-
PreserveNewest
-
- PreserveNewest
-
-
- PreserveNewest
-
PreserveNewest
diff --git a/Barotrauma/BarotraumaShared/Source/Items/Components/Machines/Deconstructor.cs b/Barotrauma/BarotraumaShared/Source/Items/Components/Machines/Deconstructor.cs
index ec3aa3ad7..777ecb668 100644
--- a/Barotrauma/BarotraumaShared/Source/Items/Components/Machines/Deconstructor.cs
+++ b/Barotrauma/BarotraumaShared/Source/Items/Components/Machines/Deconstructor.cs
@@ -102,120 +102,6 @@ namespace Barotrauma.Items.Components
}
}
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
- if (targetItem.Prefab.DeconstructItems.Any())
- {
- inputContainer.Inventory.RemoveItem(targetItem);
- Entity.Spawner.AddToRemoveQueue(targetItem);
- MoveInputQueue();
- PutItemsToLinkedContainer();
- }
- else
- {
- if (outputContainer.Inventory.Items.All(i => i != null))
- {
- targetItem.Drop(dropper: null);
- }
- else
- {
- outputContainer.Inventory.TryPutItem(targetItem, user: null, createNetworkEvent: true);
- }
- }
-
if (targetItem.Prefab.DeconstructItems.Any())
{
inputContainer.Inventory.RemoveItem(targetItem);