Add time-based delay to slow packet movement on super-fast computers
This commit is contained in:
parent
c66aa99a28
commit
110a751d25
@ -49,6 +49,9 @@
|
||||
<setting name="FormTransLastDir" serializeAs="String">
|
||||
<value />
|
||||
</setting>
|
||||
<setting name="MSBetweenPacketMoves" serializeAs="String">
|
||||
<value>15</value>
|
||||
</setting>
|
||||
</EduNetworkBuilder.Properties.Settings>
|
||||
</userSettings>
|
||||
</configuration>
|
@ -388,6 +388,7 @@ namespace EduNetworkBuilder
|
||||
public static string AllowedUsernameCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890._";
|
||||
|
||||
public static int MillisecondsBetweenReplays = 500;
|
||||
public static int MillisecondsBetweenPacketMoves = 15;
|
||||
/// <summary>
|
||||
/// Find the global random number generator.
|
||||
/// </summary>
|
||||
|
@ -38,6 +38,7 @@ namespace EduNetworkBuilder
|
||||
public string LastTrans1Lang = "";
|
||||
public string LastTrans2Lang = "";
|
||||
public string FormLastTransDir = "";
|
||||
public int MillisecondsBetweenPacketMoves = NB.MillisecondsBetweenPacketMoves; //How quick do packets move
|
||||
[XmlIgnore] //it is protected so it should not be serialized anyway.
|
||||
protected ActionCollection UserActions = new ActionCollection();
|
||||
[XmlIgnore]
|
||||
@ -134,6 +135,7 @@ namespace EduNetworkBuilder
|
||||
ToClass.BelongsToUser = FromClass.BelongsToUser;
|
||||
ToClass.AutoDHCPAllMachinesAtNetworkLoad = FromClass.AutoDHCPAllMachinesAtNetworkLoad;
|
||||
ToClass.FormLastTransDir = FromClass.FormLastTransDir;
|
||||
ToClass.MillisecondsBetweenPacketMoves = FromClass.MillisecondsBetweenPacketMoves;
|
||||
|
||||
foreach (string one in FromClass.ScoreList)
|
||||
{
|
||||
@ -202,6 +204,7 @@ namespace EduNetworkBuilder
|
||||
LastTrans1Lang = Properties.Settings.Default.LastTrans1Lang;
|
||||
LastTrans2Lang = Properties.Settings.Default.LastTrans2Lang;
|
||||
FormLastTransDir = Properties.Settings.Default.FormTransLastDir;
|
||||
//MillisecondsBetweenPacketMoves = Properties.Settings.Default.MSBetweenPacketMoves; //For the moment we do not have a place to edit this. Do not save it so we can change it easier through code
|
||||
|
||||
foreach (string one in Properties.Settings.Default.ScoreList)
|
||||
{
|
||||
@ -400,6 +403,7 @@ namespace EduNetworkBuilder
|
||||
Properties.Settings.Default.LastTrans1Lang = LastTrans1Lang;
|
||||
Properties.Settings.Default.LastTrans2Lang = LastTrans2Lang;
|
||||
Properties.Settings.Default.FormTransLastDir = FormLastTransDir;
|
||||
Properties.Settings.Default.MSBetweenPacketMoves = MillisecondsBetweenPacketMoves;
|
||||
|
||||
Properties.Settings.Default.ScoreList.Clear();
|
||||
foreach(string One in ScoreList)
|
||||
|
@ -69,6 +69,7 @@ namespace EduNetworkBuilder
|
||||
public TraversalClass LastTraversal = null;
|
||||
|
||||
private bool previously_had_packets = false; //used on "tick" to determine if we are starting from scratch
|
||||
private DateTime NextPacketMovement = DateTime.UtcNow;
|
||||
|
||||
private List<string> PacketColors = new List<string>();
|
||||
private List<Image> PacketImages = new List<Image>();
|
||||
@ -1663,6 +1664,7 @@ namespace EduNetworkBuilder
|
||||
public void Tick(bool SkipVisuals = false)
|
||||
{
|
||||
if (!SkipVisuals && NB.ProcessingInvisibleNetwork()) return; //We skip visual ticks while doing invisible ones
|
||||
if (DateTime.UtcNow < NextPacketMovement && !SkipVisuals) return; //we are supposed to be seeing something, but it is not time yet
|
||||
if (!SkipVisuals)
|
||||
{
|
||||
foreach (AnimationClass one in Animations)
|
||||
@ -1731,6 +1733,8 @@ namespace EduNetworkBuilder
|
||||
ClearPacketCounters();
|
||||
}
|
||||
ProcessPacketsOnce();
|
||||
NBSettings Settings = NB.GetSettings();
|
||||
NextPacketMovement = DateTime.UtcNow.AddMilliseconds(Settings.MillisecondsBetweenPacketMoves);
|
||||
if(!ProcessingShouldContinue())
|
||||
{
|
||||
//It has all been taken care of
|
||||
|
14
EduNetworkBuilder/Properties/Settings.Designer.cs
generated
14
EduNetworkBuilder/Properties/Settings.Designer.cs
generated
@ -12,7 +12,7 @@ namespace EduNetworkBuilder.Properties {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.5.0.0")]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
@ -222,5 +222,17 @@ namespace EduNetworkBuilder.Properties {
|
||||
this["PuzzlesFailed"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("15")]
|
||||
public int MSBetweenPacketMoves {
|
||||
get {
|
||||
return ((int)(this["MSBetweenPacketMoves"]));
|
||||
}
|
||||
set {
|
||||
this["MSBetweenPacketMoves"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -53,5 +53,8 @@
|
||||
<Setting Name="PuzzlesFailed" Type="System.Collections.Specialized.StringCollection" Scope="User">
|
||||
<Value Profile="(Default)" />
|
||||
</Setting>
|
||||
<Setting Name="MSBetweenPacketMoves" Type="System.Int32" Scope="User">
|
||||
<Value Profile="(Default)">15</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
@ -4,14 +4,14 @@
|
||||
{\fdbmajor\f31501\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhimajor\f31502\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0302020204030204}Calibri Light;}
|
||||
{\fbimajor\f31503\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\flominor\f31504\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}
|
||||
{\fdbminor\f31505\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\fhiminor\f31506\fbidi \fswiss\fcharset0\fprq2{\*\panose 020f0502020204030204}Calibri;}
|
||||
{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f359\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f360\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
|
||||
{\f362\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f363\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f364\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f365\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
|
||||
{\f366\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f367\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f379\fbidi \fmodern\fcharset238\fprq1 Courier New CE;}{\f380\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr;}
|
||||
{\f382\fbidi \fmodern\fcharset161\fprq1 Courier New Greek;}{\f383\fbidi \fmodern\fcharset162\fprq1 Courier New Tur;}{\f384\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f385\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic);}
|
||||
{\f386\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic;}{\f387\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f699\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f700\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}
|
||||
{\f702\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f703\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f706\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f707\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}
|
||||
{\f749\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f750\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f752\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f753\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}
|
||||
{\f754\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\f755\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\f756\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\f757\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}
|
||||
{\fbiminor\f31507\fbidi \froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman;}{\f40\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\f41\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}
|
||||
{\f43\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}{\f44\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\f45\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\f46\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
|
||||
{\f47\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\f48\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\f60\fbidi \fmodern\fcharset238\fprq1 Courier New CE;}{\f61\fbidi \fmodern\fcharset204\fprq1 Courier New Cyr;}
|
||||
{\f63\fbidi \fmodern\fcharset161\fprq1 Courier New Greek;}{\f64\fbidi \fmodern\fcharset162\fprq1 Courier New Tur;}{\f65\fbidi \fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f66\fbidi \fmodern\fcharset178\fprq1 Courier New (Arabic);}
|
||||
{\f67\fbidi \fmodern\fcharset186\fprq1 Courier New Baltic;}{\f68\fbidi \fmodern\fcharset163\fprq1 Courier New (Vietnamese);}{\f380\fbidi \froman\fcharset238\fprq2 Cambria Math CE;}{\f381\fbidi \froman\fcharset204\fprq2 Cambria Math Cyr;}
|
||||
{\f383\fbidi \froman\fcharset161\fprq2 Cambria Math Greek;}{\f384\fbidi \froman\fcharset162\fprq2 Cambria Math Tur;}{\f387\fbidi \froman\fcharset186\fprq2 Cambria Math Baltic;}{\f388\fbidi \froman\fcharset163\fprq2 Cambria Math (Vietnamese);}
|
||||
{\f430\fbidi \fswiss\fcharset238\fprq2 Calibri CE;}{\f431\fbidi \fswiss\fcharset204\fprq2 Calibri Cyr;}{\f433\fbidi \fswiss\fcharset161\fprq2 Calibri Greek;}{\f434\fbidi \fswiss\fcharset162\fprq2 Calibri Tur;}
|
||||
{\f435\fbidi \fswiss\fcharset177\fprq2 Calibri (Hebrew);}{\f436\fbidi \fswiss\fcharset178\fprq2 Calibri (Arabic);}{\f437\fbidi \fswiss\fcharset186\fprq2 Calibri Baltic;}{\f438\fbidi \fswiss\fcharset163\fprq2 Calibri (Vietnamese);}
|
||||
{\flomajor\f31508\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}{\flomajor\f31509\fbidi \froman\fcharset204\fprq2 Times New Roman Cyr;}{\flomajor\f31511\fbidi \froman\fcharset161\fprq2 Times New Roman Greek;}
|
||||
{\flomajor\f31512\fbidi \froman\fcharset162\fprq2 Times New Roman Tur;}{\flomajor\f31513\fbidi \froman\fcharset177\fprq2 Times New Roman (Hebrew);}{\flomajor\f31514\fbidi \froman\fcharset178\fprq2 Times New Roman (Arabic);}
|
||||
{\flomajor\f31515\fbidi \froman\fcharset186\fprq2 Times New Roman Baltic;}{\flomajor\f31516\fbidi \froman\fcharset163\fprq2 Times New Roman (Vietnamese);}{\fdbmajor\f31518\fbidi \froman\fcharset238\fprq2 Times New Roman CE;}
|
||||
@ -179,16 +179,19 @@ Normal Table;}}{\*\listtable{\list\listtemplateid-678110632\listhybrid{\listleve
|
||||
{\listoverride\listid237788805\listoverridecount0\ls9}{\listoverride\listid1164392343\listoverridecount0\ls10}{\listoverride\listid1272543532\listoverridecount0\ls11}{\listoverride\listid1729453556\listoverridecount0\ls12}{\listoverride\listid1903905976
|
||||
\listoverridecount0\ls13}{\listoverride\listid1436513145\listoverridecount0\ls14}{\listoverride\listid1668097324\listoverridecount0\ls15}}{\*\rsidtbl \rsid935579\rsid1715044\rsid2361093\rsid2634409\rsid3230122\rsid3738219\rsid3953182\rsid3954092
|
||||
\rsid4002608\rsid4014997\rsid4148115\rsid4201155\rsid4330009\rsid4674322\rsid4984628\rsid4995504\rsid5902490\rsid6243721\rsid6709067\rsid7014465\rsid7089617\rsid7091827\rsid7425313\rsid7431196\rsid7475506\rsid8135144\rsid8154512\rsid8807737\rsid8871995
|
||||
\rsid9005806\rsid9076344\rsid9125153\rsid9187300\rsid9664289\rsid10361403\rsid11235612\rsid11358317\rsid11886434\rsid12019296\rsid12193239\rsid12329139\rsid12389542\rsid12727249\rsid12727595\rsid12738045\rsid13122645\rsid13307397\rsid13454907\rsid13783353
|
||||
\rsid13982156\rsid14170698\rsid14353560\rsid14427571\rsid14508595\rsid14577306\rsid14746156\rsid14829014\rsid15677065\rsid15949156\rsid16005564\rsid16457871}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0\mdefJc1
|
||||
\mwrapIndent1440\mintLim0\mnaryLim0}{\info{\operator tim.young@lightsys.org}{\creatim\yr2017\mo3\dy14\hr9\min58}{\revtim\yr2018\mo10\dy23\hr11\min46}{\version61}{\edmins74}{\nofpages13}{\nofwords3243}{\nofchars14954}{\nofcharsws17841}{\vern95}}
|
||||
\rsid9005806\rsid9076344\rsid9125153\rsid9187300\rsid9664289\rsid10361403\rsid11235612\rsid11358317\rsid11886434\rsid12019296\rsid12193239\rsid12329139\rsid12389542\rsid12613072\rsid12727249\rsid12727595\rsid12738045\rsid13122645\rsid13307397\rsid13454907
|
||||
\rsid13783353\rsid13982156\rsid14170698\rsid14353560\rsid14427571\rsid14508595\rsid14577306\rsid14746156\rsid14829014\rsid15677065\rsid15949156\rsid16005564\rsid16457871}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0
|
||||
\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim0}{\info{\operator tim.young@lightsys.org}{\creatim\yr2017\mo3\dy14\hr9\min58}{\revtim\yr2019\mo1\dy23\hr8\min23}{\version62}{\edmins74}{\nofpages13}{\nofwords3262}{\nofchars15042}{\nofcharsws17946}{\vern95}}
|
||||
{\*\userprops {\propname amzn:id}\proptype30{\staticval 5d8f9aa3-7362-4e9d-ad7a-41823ad84e09}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect
|
||||
\widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701
|
||||
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale130\rsidroot14577306 \nouicompat \fet0{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1
|
||||
\dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale100\rsidroot14577306 \nouicompat \fet0{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1
|
||||
\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5
|
||||
\pndec\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl6\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl7\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang
|
||||
{\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid13982156 \rtlch\fcs1 \af0\afs22\alang1025
|
||||
\ltrch\fcs0 \fs22\lang1033\langfe1033\loch\af31506\hich\af31506\dbch\af31505\cgrid\langnp1033\langfenp1033 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid4330009 \hich\af39\dbch\af31505\loch\f39 Version 1.0.51
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12613072\charrsid12613072 \hich\af39\dbch\af31505\loch\f39 * }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12613072 \hich\af39\dbch\af31505\loch\f39
|
||||
Added small \hich\af39\dbch\af31505\loch\f39 time-based delay when printing packets; on fast computers the pa\hich\af39\dbch\af31505\loch\f39 ckets would fly by too fast.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0
|
||||
\f39\lang9\langfe1033\langnp9\insrsid12613072\charrsid12613072
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid13982156 \hich\af39\dbch\af31505\loch\f39 Version 1.0.50
|
||||
\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid10361403 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid10361403\charrsid10361403 \hich\af39\dbch\af31505\loch\f39 *}{
|
||||
\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid10361403 \hich\af39\dbch\af31505\loch\f39 Added regression testing for making sure we do not break things while making changes to the UI or how the system works.
|
||||
@ -322,7 +325,7 @@ g a local IP that does not exist, the error message we were getting was the wron
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12727595 \hich\af39\dbch\af31505\loch\f39 * Highlight the multiple items if selecting them
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid15677065 \hich\af39\dbch\af31505\loch\f39 * Allow the ESC key to clear the selected items.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid16005564 \hich\af39\dbch\af31505\loch\f39 * Can right-click and delete of multiple selected items
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Can right-click and change color of multiple selected items
|
||||
\par \hich\af39\dbch\af31505\loch\f39 *\hich\af39\dbch\af31505\loch\f39 Can right-click and change color of multiple selected items
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid8871995 \hich\af39\dbch\af31505\loch\f39 * Fixed some tracert bugs
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7431196 \hich\af39\dbch\af31505\loch\f39 * lots of minor fixes so is more stable on Linux
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Saves settings in ~/.conf/EduNetworkbuilder_config.xml file on Linux
|
||||
@ -383,58 +386,59 @@ res. Right now, the only way to make something hidden is by editing the file an
|
||||
\par }{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 * Fixed issues with broadcast packets
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed a network loop issue
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed issue with multiple interfaces and being able to go out a different interface than we came in on
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed many small bugs that crept in when fixing other bugs. Now all puzzles seem to play correctly}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed many sm\hich\af39\dbch\af31505\loch\f39 all bugs that crept in when fixing other bugs. Now all puzzles seem to play correctly}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
|
||||
\par \hich\af39\dbch\af31505\loch\f39 Version 1.0.22 09/01/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added ssid and keys for wireless links
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Wireless will auto-disconnect if link is too long
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Wireless will auto-connect if ss\hich\af39\dbch\af31505\loch\f39 id and key match, if link is short enough
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Wireless will auto-connect if ssid and key matc\hich\af39\dbch\af31505\loch\f39 h, if link is short enough
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Packets will drop on wireless links if distance is too great
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * wport has no interface (cannot edit IP address)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * wireless router works properly - forwards broadcast packets
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * wireless router handles dhcp requests\hich\af39\dbch\af31505\loch\f39 properly (both responds to it but also passes it on)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * wireless router handles dhcp requests properly (both\hich\af39\dbch\af31505\loch\f39 responds to it but also passes it on)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * right-clicking light and microwave no longer has ping, arp, edit, and other context menus
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * added net-test for DHCP server status (on/off)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * If multiple DHCP servers, client randomly chooses which to \hich\af39\dbch\af31505\loch\f39 keep.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 *Add Wireless Puzzle
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * If multiple DHCP servers, client randomly chooses which to keep.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 *Add Wire\hich\af39\dbch\af31505\loch\f39 less Puzzle
|
||||
\par \hich\af39\dbch\af31505\loch\f39 *Fix many wireless device bugs\line }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.21 08/15/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0
|
||||
\f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added a microwave and fluorescent light. They corrupt data when packets run close to them.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added some packet corruption puzzles
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed window resize-on-load issue w\hich\af39\dbch\af31505\loch\f39 here the help window popped up first, then the builder window resized over to hide the help window.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed window resize-on-load issue where the help w\hich\af39\dbch\af31505\loch\f39 indow popped up first, then the builder window resized over to hide the help window.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.20 08/12/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * wports do not display on tooltips or when printing the device info
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added ctrl-s to quick-save a network we are working on
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * \hich\af39\dbch\af31505\loch\f39 commented out wireless devices for now - doing a big demo and wireless is not yet complete
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * commented out w\hich\af39\dbch\af31505\loch\f39 ireless devices for now - doing a big demo and wireless is not yet complete
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * added search box to help
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.19 08/08/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 *Updated context help for most puzzles that introduce new ideas.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Sorte\hich\af39\dbch\af31505\loch\f39 d Help topics when adding them in net-tests.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Sorted Help topics when adding them in net-tests.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added some images to the help to help clarify things.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Start with the help windows being the same "height" as the network window.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Open Help so it can be kept open while the puzzles progress.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Deal with min\hich\af39\dbch\af31505\loch\f39 imized state better (used to shrink window to smallest possible state)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Deal with minimized state better (used to shrink window to\hich\af39\dbch\af31505\loch\f39 smallest possible state)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Remember size and location of main window between uses.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.18 08/08/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added Context Help for puzzles.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 - Each puzzle can have context help
|
||||
\par \hich\af39\dbch\af31505\loch\f39 - There is a net-test to hav\hich\af39\dbch\af31505\loch\f39 e us read help
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * fixed minor problem with a "ding" sound when we load a puzzle that has something locked.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 - There is a net-test to have us read help
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * fixed minor problem with a "\hich\af39\dbch\af31505\loch\f39 ding" sound when we load a puzzle that has something locked.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.17 08/01/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added more help
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Much progress made in preparing for a French translation
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * allow for Puzzle's description to be in anot\hich\af39\dbch\af31505\loch\f39 her language
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * allow for Puzzle's description to be in another language
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added more to help
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Removed edit -> cut, paste, copy, undo. They never did anything. So why have them?
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Removed e\hich\af39\dbch\af31505\loch\f39 dit -> cut, paste, copy, undo. They never did anything. So why have them?
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Save box starts in the directory of the file we opened (if we have one)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Choose a language at startup if one has never been chosen, \hich\af39\dbch\af31505\loch\f39 and have option to change language.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added another puzzle, showing what happens (or does not happen) if we have two networks that use the same IP addresses, and we want to build a VPN between them.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Choose a language at startup if one has never been chosen, and have option to change language.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added a\hich\af39\dbch\af31505\loch\f39 nother puzzle, showing what happens (or does not happen) if we have two networks that use the same IP addresses, and we want to build a VPN between them.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.16 07/18/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added ability to break links\hich\af39\dbch\af31505\loch\f39 (bad network wire)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * "connection lights" on network cards / ports when we edit devices
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added ability to break links (bad network wire)
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * "connection lights" on \hich\af39\dbch\af31505\loch\f39 network cards / ports when we edit devices
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Test for "needs link to" does not succeed if the link in question is a broken link
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added a puzzle to show you how to find broken links
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Used broken links in other\hich\af39\dbch\af31505\loch\f39 puzzles
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed bug: switches could not use DHCP for many different reasons. Now it works for them.
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Used broken links in other puzzles
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed bug: switches could not use \hich\af39\dbch\af31505\loch\f39 DHCP for many different reasons. Now it works for them.
|
||||
\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid12019296 \hich\af39\dbch\af31505\loch\f39 Version 1.0.15 07/11/2015}{\rtlch\fcs1 \af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12019296
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Added ping time progress bar
|
||||
\par \hich\af39\dbch\af31505\loch\f39 * Fixed issue with things timing out before they c\hich\af39\dbch\af31505\loch\f39
|
||||
@ -678,8 +682,8 @@ fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
|
||||
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000005070
|
||||
90f1ef6ad401feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
|
||||
ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000805d
|
||||
474827b3d401feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000
|
||||
00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000
|
||||
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000
|
||||
0000000000000000000000000000000000000000000000000105000000000000}}
|
Loading…
Reference in New Issue
Block a user