forked from KSP-RO/RP-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntryCostStorage.cs
40 lines (32 loc) · 931 Bytes
/
EntryCostStorage.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Text;
using UnityEngine;
using KSP;
namespace RP0
{
[KSPAddon(KSPAddon.Startup.MainMenu, true)]
public class EntryCostStorage : MonoBehaviour
{
protected static Dictionary<string, int> originalEntryCosts = new Dictionary<string, int>();
public static int GetCost(string partName)
{
int tmp;
if (originalEntryCosts.TryGetValue(partName, out tmp))
return tmp;
return 0;
}
protected bool run = true;
public void Update()
{
if (run)
{
originalEntryCosts.Clear();
foreach (AvailablePart ap in PartLoader.LoadedPartsList)
originalEntryCosts[ap.name] = ap.entryCost;
run = false;
GameObject.Destroy(this);
}
}
}
}