garwel Posted April 25, 2021 Author Share Posted April 25, 2021 (edited) Space Age 1.3.3 Changed: Asteroids and comets are no longer included in vessel's mass for achievements Fixed: Issues with tracking of flag plant event (they weren't added to the Chronicle; achievements didn't record the kerbal's name) Fixed: When switching to a vessel's log, the page number wasn't reset to 1 Fixed: NRE when loading invalid or corrupted (e.g. empty) achievements Various small UI and localization improvements Code improvement for better performance, maintainability and compatibility Download here Edited April 26, 2021 by garwel Quote Link to comment Share on other sites More sharing options...
garwel Posted May 2, 2021 Author Share Posted May 2, 2021 Space Age 1.3.4 Added: Setting to use default (stock or mod-provided) date & time format instead of Space Age's own Changed: Unwarp time on Chronicle events when notifications are enabled; removed redundant setting Changed: Vessels are now marked as destroyed at a celestial body if they are destroyed in the atmosphere, regardless of altitude Fixed: Incorrect messages in Chronicle for achievement-related events Download here Quote Link to comment Share on other sites More sharing options...
garwel Posted May 7, 2021 Author Share Posted May 7, 2021 (edited) Space Age 1.3.5 Added: New achievement for Total Science Collected (for relevant game modes, of course) and the related ScienceAdded event (not displayed in the Chronicle but can be used in achievements) Added: Search feature now recognizes phrase search and looks for whole words only. E.g., when you search for "Eve", it will only include the entries related to the planet, not everything with "eve" inside (such as "achievement"). Put phrases in quotation marks to search for them (for instance "Apollo 11" will find all entries with this exact phrase while Apollo 11 will find anything with words "Apollo" and "11"). Added: Button to quickly clear search box and return back to unfiltered results Added: Space Age window now automatically updates to reflect new achievements Fixed; More data validity checks to prevent issues if you load a corrupted save Various small UI and performance improvements Download here Edited May 7, 2021 by garwel Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted June 25, 2021 Share Posted June 25, 2021 (edited) @garwel Was testing mods in 1.12, found a problem with this mod Snippets from the log: [GameParameters]: Couldn't find type for custom parameter SpaceAgeChronicleSettings. (Filename: C:\buildslave\unity\build\Runtime/Export/Debug/Debug.bindings.h Line: 35) and Exception loading ScenarioModule SpaceAgeScenario: System.ArgumentException: Couldn't find custom parameter SpaceAgeChronicleSettings! at GameParameters.CustomParams[T] () [0x0004d] in <a1ca58b5ca7140639de29a81de5e3f32>:0 at SpaceAge.SpaceAgeChronicleSettings.get_Instance () [0x00005] in <ba21344515484166a67594353b1f7f87>:0 at SpaceAge.Core.get_Level () [0x00000] in <ba21344515484166a67594353b1f7f87>:0 at SpaceAge.Core.Log (System.String message, SpaceAge.LogLevel messageLevel) [0x00001] in <ba21344515484166a67594353b1f7f87>:0 at SpaceAge.SpaceAgeScenario.OnLoad (ConfigNode node) [0x00001] in <ba21344515484166a67594353b1f7f87>:0 at ScenarioModule.Load (ConfigNode node) [0x0000e] in <a1ca58b5ca7140639de29a81de5e3f32>:0 at ScenarioRunner.AddModule (ConfigNode node) [0x0005e] in <a1ca58b5ca7140639de29a81de5e3f32>:0 (Filename: C:\buildslave\unity\build\Runtime/Export/Debug/Debug.bindings.h Line: 35) Complete logs are here: https://www.dropbox.com/s/6cb9fqsww8bw8ye/SpaceAgeErrors.zip?dl=0 Edit: I took a look at the code, and while I haven't tested this yet, I think your problem is here: https://github.com/GarwelGarwel/SpaceAge/blob/873e8ab4f8696e8e5daca5cbaa79e59f14f825d6/SpaceAgeChronicleSettings.cs#L108 The var shouldn't be a static because what it's referring to isn't a static: public static SpaceAgeChronicleSettings Instance => HighLogic.CurrentGame.Parameters.CustomParams<SpaceAgeChronicleSettings>(); Edit 2: another test, clean install, only this mod installed, got the following: 16246 TypeLoadException: VTable setup of type SpaceAge.GarwelDateTimeFormatter failed 16247 at SpaceAge.SpaceAgeScenario.DisplayData () [0x0022e] in <ba21344515484166a67594353b1f7f87>:0 16248 at (wrapper delegate-invoke) <Module>.invoke_void() 16249 at KSP.UI.Screens.ApplicationLauncherButton.OnTrue (UnityEngine.EventSystems.PointerEventData data, KSP.UI.UIRadioButton+CallType callType) [0x00000] in <a1ca58b5ca7140639de29a81de5e3f32>:0 16250 at UnityEngine.Events.InvokableCall`2[T1,T2].Invoke (T1 args0, T2 args1) [0x00010] in <12e76cd50cc64cf19e759e981cb725af>:0 16251 at UnityEngine.Events.UnityEvent`2[T0,T1].Invoke (T0 arg0, T1 arg1) [0x00025] in <12e76cd50cc64cf19e759e981cb725af>:0 16252 at KSP.UI.UIRadioButton.SetState (KSP.UI.UIRadioButton+State state, KSP.UI.UIRadioButton+CallType callType, UnityEngine.EventSystems.PointerEventData data, System.Boolean popButtonsInGroup) [0x00079] in <a1ca58b5ca7140639de29a81de5e3f32>:0 16253 at KSP.UI.UIRadioButton.ToggleState (KSP.UI.UIRadioButton+CallType callType, UnityEngine.EventSystems.PointerEventData data) [0x00026] in <a1ca58b5ca7140639de29a81de5e3f32>:0 16254 at KSP.UI.UIRadioButton.UnityEngine.EventSystems.IPointerClickHandler.OnPointerClick (UnityEngine.EventSystems.PointerEventData eventData) [0x0011e] in <a1ca58b5ca7140639de29a81de5e3f32>:0 16255 at UnityEngine.EventSystems.ExecuteEvents.Execute (UnityEngine.EventSystems.IPointerClickHandler handler, UnityEngine.EventSystems.BaseEventData eventData) [0x00007] in <2d96a890bfa54a0e8b00b1a5c3019a1a>:0 16256 at UnityEngine.EventSystems.ExecuteEvents.Execute[T] (UnityEngine.GameObject target, UnityEngine.EventSystems.BaseEventData eventData, UnityEngine.EventSystems.ExecuteEvents+EventFunction`1[T1] functor) [0x00063] in <2d96a890bfa54a0e8b00b1a5c3019a1a>:0 Edit 2: Found the problems. First, the IDateTimeFormatter got a new method, so the mod needs to have it added and recompiled against 1.12: public string PrintDateDeltaCompact(double time, bool includeTime, bool includeSeconds, bool b1, int i1) => throw new NotImplementedException(); Second, the first error also seems to be solved with a recompile against 1.12 Edited June 25, 2021 by linuxgurugamer Quote Link to comment Share on other sites More sharing options...
garwel Posted June 25, 2021 Author Share Posted June 25, 2021 Space Age 1.3.6 Recompiled for KSP 1.12 (thanks @linuxgurugamer for finding the issue). Probably not compatible with older versions of KSP Download here Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted June 25, 2021 Share Posted June 25, 2021 On 6/25/2021 at 7:20 AM, garwel said: Space Age 1.3.6 Recompiled for KSP 1.12 (thanks @linuxgurugamer for finding the issue). Probably not compatible with older versions of KSP Download here Expand Definitely not compatible with older versions. Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted July 23, 2021 Share Posted July 23, 2021 @garwel Love this mod. One thing, could you add the names of the crew members to the achievements and/or ship logs? Would make it easier for keeping track of missions Quote Link to comment Share on other sites More sharing options...
garwel Posted July 27, 2021 Author Share Posted July 27, 2021 On 7/23/2021 at 2:38 AM, linuxgurugamer said: Love this mod. One thing, could you add the names of the crew members to the achievements and/or ship logs? Would make it easier for keeping track of missions Expand Eventually, yes. It will require quite a few changes to the code though, and I'm not sure how better to display long lists of crew members without exploding the UI. Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted July 27, 2021 Share Posted July 27, 2021 On 7/27/2021 at 3:37 PM, garwel said: Eventually, yes. It will require quite a few changes to the code though, and I'm not sure how better to display long lists of crew members without exploding the UI. Expand How about a button to display a window with the crew, or possible a small scrollbox? Quote Link to comment Share on other sites More sharing options...
flart Posted January 10, 2022 Share Posted January 10, 2022 (edited) Would be nice to have funds changes in the Chronicle. Also probably Science and Rep. something like: Y2D7 5:05 Funds Changed: 3,800,000 (+300,000) Y2D2 3:03 Funds Changed: 3,500,000 (-500,000) Edited January 10, 2022 by flart Quote Link to comment Share on other sites More sharing options...
Shadriss Posted June 15, 2022 Share Posted June 15, 2022 @garwelThanks for this, though I am wondering if the window is supposed to be retaining it's screen position or not. I've not seen a setting for it, and watching it constantly reset position while flying, while somewhat entertaining at times, is probably not what you had intended. Also, given how long it's been since there were any updates, I also understand that it may be an abandoned mod at this point, but no harm in asking at this point. Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted November 14, 2022 Share Posted November 14, 2022 @garwel I found a small bug in SpaceAge, I've pushed a PR to the repo. Essentially, a game Event (OnScienceChanged) was being added instead of removed in the OnDisable method Quote Link to comment Share on other sites More sharing options...
garwel Posted November 15, 2022 Author Share Posted November 15, 2022 On 11/14/2022 at 4:17 AM, linuxgurugamer said: @garwel I found a small bug in SpaceAge, I've pushed a PR to the repo. Essentially, a game Event (OnScienceChanged) was being added instead of removed in the OnDisable method Expand Thanks! Actually, I've already fixed it in the dev branch, but been too lazy... er, busy to release the update yet. Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted November 15, 2022 Share Posted November 15, 2022 On 11/15/2022 at 10:52 PM, garwel said: Thanks! Actually, I've already fixed it in the dev branch, but been too lazy... er, busy to release the update yet. Expand Please do, it's generating errors in the log Quote Link to comment Share on other sites More sharing options...
garwel Posted November 16, 2022 Author Share Posted November 16, 2022 Space Age 1.3.7 Compiled for KSP 1.12.4 Improved: No longer saving unused vessels data Improved: Optimized some loops to be a bit faster Changed: Updated metadata to require KSP 1.12 Fixed: Error in the log and possible memory leak when leaving scene Download here Quote Link to comment Share on other sites More sharing options...
Gordon Dry Posted November 16, 2022 Share Posted November 16, 2022 Please make it compatible to ToolbarControl (and ClickThroughBlocker, if it's not yet). And, please make it save the settings in a cfg file inside a PluginData folder, not inside the persistent.sfs Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted November 16, 2022 Share Posted November 16, 2022 Actuall On 11/16/2022 at 7:53 PM, Gordon Dry said: Please make it compatible to ToolbarControl (and ClickThroughBlocker, if it's not yet). And, please make it save the settings in a cfg file inside a PluginData folder, not inside the persistent.sfs Expand Ummm, if you play multiple games the plugindata will get collisions, for something like this, which has save-specific info, either save it in the persistent.sfs OR save it in a cfg file in the save game folder (I do that with a few mods) Quote Link to comment Share on other sites More sharing options...
Gordon Dry Posted November 16, 2022 Share Posted November 16, 2022 On 11/16/2022 at 8:48 PM, linuxgurugamer said: save it in a cfg file in the save game folder Expand I prefer that. A seperate config file is good for backing up preferred settings and can be easily copied from the backup to the new save folder after starting a career. Quote Link to comment Share on other sites More sharing options...
linuxgurugamer Posted November 17, 2022 Share Posted November 17, 2022 On 11/16/2022 at 9:18 PM, Gordon Dry said: I prefer that. A seperate config file is good for backing up preferred settings and can be easily copied from the backup to the new save folder after starting a career. Expand but in this case, the info is specific to a save. Other than making the save file a bit smaller, you aren't gaining that much Quote Link to comment Share on other sites More sharing options...
Gordon Dry Posted November 17, 2022 Share Posted November 17, 2022 @linuxgurugamerWell, at least preferred default settings that differ from the mod's default settings can be saved and backed up this way. Quote Link to comment Share on other sites More sharing options...
610yesnolovely Posted November 19, 2022 Share Posted November 19, 2022 Gosh this is a very cool mod that I pretty much only found out about because of recent posts. What a very cool idea. I will be using this! I'm particularly interested that there's a way to gain to configure funds/sci/rep by score, which might be a great way to add motivation to achieve things (rather than futzing about). From what I can see there's no tracking, scoring of contracts, I'm assuming because that's something you can already see/work out from Mission Control? Quote Link to comment Share on other sites More sharing options...
garwel Posted November 24, 2022 Author Share Posted November 24, 2022 (edited) On 11/19/2022 at 6:10 PM, 610yesnolovely said: From what I can see there's no tracking, scoring of contracts, I'm assuming because that's something you can already see/work out from Mission Control? Expand TBH, I never really thought of that. You can see all your completed (and failed) contracts in stock, so I never had a need to add this functionality to the mod. But maybe someday I'll do it. Edited November 24, 2022 by garwel Quote Link to comment Share on other sites More sharing options...
610yesnolovely Posted December 1, 2022 Share Posted December 1, 2022 (edited) Using this mod, and I love it. Noticed a slightly weird thing in that the window position moves down and right each time you click something like "Achievements" or "Log" or open or close it.The default starting position for me was somewhere in the bottom right, so after closing Space Age via the icon I thought I had disappeared for ever. The solution was putting it at the top right and moving it back every so often :-) I took a look at the code, possibly the issue is in UndisplayData(): https://github.com/GarwelGarwel/SpaceAge/blob/af500c541acc95418a46a7afe6f3d27664f59804/SpaceAgeScenario.cs#L799 windowPosition = new Rect(v.x / Screen.width + 0.5f, v.y / Screen.height + 0.5f, windowWidth, 50); I think adding 0.5 isn't required and causes this behaviour? Edited December 2, 2022 by 610yesnolovely Quote Link to comment Share on other sites More sharing options...
garwel Posted February 25, 2023 Author Share Posted February 25, 2023 Space Age 1.3.8 Added a button to view the active vessel's log when in the Flight scene Download here Quote Link to comment Share on other sites More sharing options...
cyberKerb Posted Saturday at 10:07 PM Share Posted Saturday at 10:07 PM Seeing as this mod already does a great job at statistics for a game, do you think it would be possible to count the number of times a player pressed F5 or F9 and include that in the statistics? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.