From edf4bfd6c13e3aa17f7bbe5962541ae6f926b62a Mon Sep 17 00:00:00 2001 From: Chris Ridley Date: Sat, 20 Oct 2018 01:33:01 -0500 Subject: [PATCH] Regenerated docs. Modified csproj for 1.5.2 release. Used non-lambda syntax on Utility.cs ExtendToStringGrid functions, because apparantly Doxygen is incapable of handling it properly. --- GoRogue/GoRogue.csproj | 4 +- GoRogue/Utility.cs | 12 +- ...ews_1_1_i_map_view_extensions-members.html | 3 +- ...1_map_views_1_1_i_map_view_extensions.html | 245 ++++++++++++++---- ...map_views_1_1_lambda_map_view-members.html | 5 +- ...gue_1_1_map_views_1_1_lambda_map_view.html | 96 +++++++ ..._1_1_lambda_settable_map_view-members.html | 5 +- ...ap_views_1_1_lambda_settable_map_view.html | 96 +++++++ ...mbda_settable_translation_map-members.html | 2 + ...s_1_1_lambda_settable_translation_map.html | 8 +- ...ws_1_1_lambda_translation_map-members.html | 2 + ..._map_views_1_1_lambda_translation_map.html | 8 +- ..._1_1_settable_translation_map-members.html | 2 + ...ap_views_1_1_settable_translation_map.html | 79 +++++- ...p_views_1_1_settable_viewport-members.html | 11 +- ...e_1_1_map_views_1_1_settable_viewport.html | 9 + ...map_views_1_1_translation_map-members.html | 2 + ...gue_1_1_map_views_1_1_translation_map.html | 81 +++++- ...ue_1_1_map_views_1_1_viewport-members.html | 11 +- ...s_go_rogue_1_1_map_views_1_1_viewport.html | 96 +++++++ docs/functions_e.html | 5 +- docs/functions_func_e.html | 5 +- docs/functions_func_s.html | 7 +- docs/functions_func_t.html | 13 +- docs/functions_s.html | 3 - docs/functions_t.html | 13 +- docs/search/all_10.js | 3 +- docs/search/all_11.js | 2 +- docs/search/all_4.js | 2 +- docs/search/functions_10.js | 1 - docs/search/functions_11.js | 2 +- docs/search/functions_4.js | 2 +- 32 files changed, 736 insertions(+), 99 deletions(-) diff --git a/GoRogue/GoRogue.csproj b/GoRogue/GoRogue.csproj index 1aebb77e..504e46e5 100644 --- a/GoRogue/GoRogue.csproj +++ b/GoRogue/GoRogue.csproj @@ -3,13 +3,13 @@ netstandard2.0 GoRogue - 1.5.1 + 1.5.2 Christopher Ridley Roguelike/2D game utility library. https://github.com/Chris3606/GoRogue/blob/master/LICENSE https://github.com/Chris3606/GoRogue false - See https://github.com/Chris3606/GoRogue/releases/tag/v1.5.1 for release notes. + See https://github.com/Chris3606/GoRogue/releases/tag/v1.5.2 for release notes. Copyright © 2018 Christopher Ridley. All rights reserved. roguelike roguelikes rogue library 2d game games diff --git a/GoRogue/Utility.cs b/GoRogue/Utility.cs index a522037b..73a66e4f 100644 --- a/GoRogue/Utility.cs +++ b/GoRogue/Utility.cs @@ -215,8 +215,10 @@ public static string ExtendToString(this T[,] array, string begin = "[\n", st /// A string representation of the 2D array, as if the array is a 2D grid-based map. /// public static string ExtendToStringGrid(this T[,] array, string begin = "", string beginRow = "", Func elementStringifier = null, - string rowSeparator = "\n", string elementSeparator = " ", string endRow = "", string end = "") => - new ArrayMap(array).ExtendToString(begin, beginRow, elementStringifier, rowSeparator, elementSeparator, endRow, end); + string rowSeparator = "\n", string elementSeparator = " ", string endRow = "", string end = "") + { + return new ArrayMap(array).ExtendToString(begin, beginRow, elementStringifier, rowSeparator, elementSeparator, endRow, end); + } /// /// Extension method for 2D arrays allowing printing the contents, as if the array represents @@ -249,8 +251,10 @@ public static string ExtendToStringGrid(this T[,] array, string begin = "", s /// A string representation of the 2D array, as if the array is a 2D grid-based map. /// public static string ExtendToStringGrid(this T[,] array, int fieldSize, string begin = "", string beginRow = "", Func elementStringifier = null, - string rowSeparator = "\n", string elementSeparator = " ", string endRow = "", string end = "") => - new ArrayMap(array).ExtendToString(fieldSize, begin, beginRow, elementStringifier, rowSeparator, elementSeparator, endRow, end); + string rowSeparator = "\n", string elementSeparator = " ", string endRow = "", string end = "") + { + return new ArrayMap(array).ExtendToString(fieldSize, begin, beginRow, elementStringifier, rowSeparator, elementSeparator, endRow, end); + } /// /// Extension method for List that implements a fisher-yates shuffle. Modifies the list it is diff --git a/docs/class_go_rogue_1_1_map_views_1_1_i_map_view_extensions-members.html b/docs/class_go_rogue_1_1_map_views_1_1_i_map_view_extensions-members.html index d7e7f4a5..dd8fd0ec 100644 --- a/docs/class_go_rogue_1_1_map_views_1_1_i_map_view_extensions-members.html +++ b/docs/class_go_rogue_1_1_map_views_1_1_i_map_view_extensions-members.html @@ -71,12 +71,13 @@

This is the complete list of members for GoRogue.MapViews.IMapViewExtensions, including all inherited members.

+ + -
Bounds< T >(this IMapView< T > mapView)GoRogue.MapViews.IMapViewExtensionsstatic
ExtendToString< T >(this IMapView< T > map, string begin="", string beginRow="", Func< T, string > elementStringifier=null, string rowSeparator="\, string elementSeparator=" ", string endRow="", string end="")GoRogue.MapViews.IMapViewExtensionsstatic
ExtendToString< T >(this IMapView< T > map, int fieldSize, string begin="", string beginRow="", Func< T, string > elementStringifier=null, string rowSeparator="\, string elementSeparator=" ", string endRow="", string end="")GoRogue.MapViews.IMapViewExtensionsstatic
Positions< T >(this IMapView< T > mapView)GoRogue.MapViews.IMapViewExtensionsstatic
RandomPosition< T >(this IMapView< T > mapView, T validValue, IGenerator rng=null)GoRogue.MapViews.IMapViewExtensionsstatic
RandomPosition< T >(this IMapView< T > mapView, IEnumerable< T > validValues, IGenerator rng=null)GoRogue.MapViews.IMapViewExtensionsstatic
RandomPosition< T >(this IMapView< T > mapView, Func< Coord, T, bool > selector, IGenerator rng=null)GoRogue.MapViews.IMapViewExtensionsstatic
RandomPosition< T >(this IMapView< T > mapView, IGenerator rng=null)GoRogue.MapViews.IMapViewExtensionsstatic
Size< T >(this IMapView< T > mapView)GoRogue.MapViews.IMapViewExtensionsstatic