• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Automap (client) [VS plugin mod]


コミットメタ情報

リビジョン1bc6b3f492ef8575eb458b32b88d7d0f47bf2bed (tree)
日時2021-01-27 08:36:23
作者melchior <melchior@user...>
コミッターmelchior

ログメッセージ

Added Entity UID to TSV file

変更サマリ

差分

--- a/Automap/Subsystems/AutomapSystem.cs
+++ b/Automap/Subsystems/AutomapSystem.cs
@@ -417,7 +417,7 @@ namespace Automap
417417
418418 using (var tsvWriter = new StreamWriter(pointsTsvPath, false, Encoding.UTF8))
419419 {
420- tsvWriter.WriteLine("Name\tDescription\tLocation\tTime\tDestination");
420+ tsvWriter.WriteLine("Name\tDescription\tLocation\tTime\tDestination\tEntity_UID");
421421 foreach (var point in this.POIs)
422422 {
423423 tsvWriter.Write(point.Name + "\t");
@@ -429,6 +429,7 @@ namespace Automap
429429 tsvWriter.Write(point.Location.PrettyCoords(ClientAPI) + "\t");
430430 tsvWriter.Write(point.Timestamp.ToString("u") + "\t");
431431 tsvWriter.Write((point.Destination != null ? point.Destination.PrettyCoords(ClientAPI) : "---") +"\t");
432+ tsvWriter.Write("null\t");
432433 tsvWriter.WriteLine();
433434 }
434435 foreach (var entity in this.EOIs)
@@ -441,7 +442,8 @@ namespace Automap
441442 tsvWriter.Write(notes + "\t");
442443 tsvWriter.Write(entity.Location.PrettyCoords(ClientAPI) + "\t");
443444 tsvWriter.Write(entity.Timestamp.ToString("u") + "\t");
444- tsvWriter.Write("n/a\t");
445+ tsvWriter.Write("---\t");
446+ tsvWriter.Write(entity.EntityId.ToString("D"));
445447 tsvWriter.WriteLine();
446448 }
447449 tsvWriter.WriteLine();