-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34a8c0b
commit ee733c5
Showing
238 changed files
with
8,603 additions
and
899 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.270")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.270")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.290")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.290")] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
3.0.0.270 | ||
3.0.0.270 | ||
3.0.0.290 | ||
3.0.0.290 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.71")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.71")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.75")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.75")] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
3.0.0.71 | ||
3.0.0.71 | ||
3.0.0.75 | ||
3.0.0.75 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.271")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.271")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("3.0.0.291")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.0.0.291")] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
3.0.0.271 | ||
3.0.0.271 | ||
3.0.0.291 | ||
3.0.0.291 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace Goedel.Tool.Constant { | ||
public partial class Constant { | ||
|
||
|
||
public Namespace Namespace; | ||
|
||
public string NameSpaceName => Namespace.Id.Label; | ||
public string Class => Namespace.Class.Label; | ||
|
||
|
||
public List<_Choice> All = new List<_Choice>(); | ||
public List<File> Files = new List<File>(); | ||
|
||
public List<_Choice> Entries = new List<_Choice>(); | ||
|
||
public List<Enum> Enums = new List<Enum>(); | ||
|
||
public override void Init() { | ||
|
||
if (_Initialized) { | ||
return; | ||
} | ||
|
||
foreach (var entry in Top) { | ||
All.Add(entry); | ||
switch (entry) { | ||
case File File: { | ||
this.Files.Add(File); | ||
|
||
foreach (var item in File.Entries) { | ||
Entries.Add(item); | ||
|
||
switch (item) { | ||
case Enum Enum: { | ||
Enum.Init(entry); | ||
Enums.Add(Enum); | ||
break; | ||
} | ||
} | ||
|
||
|
||
} | ||
|
||
break; | ||
} | ||
case Namespace nameSpace: { | ||
Namespace = nameSpace; | ||
break; | ||
} | ||
} | ||
entry.Init(null); | ||
} | ||
|
||
} | ||
} | ||
public partial class Enum { | ||
public override void Init(_Choice Parent) { | ||
foreach (var item in Code) { | ||
item.Init(this); | ||
} | ||
foreach (var item in UDF) { | ||
item.Init(this); | ||
} | ||
foreach (var item in Integer) { | ||
item.Init(this); | ||
} | ||
} | ||
} | ||
|
||
public partial class UDF { | ||
public string Title; | ||
public string Id; | ||
|
||
public override void Init(_Choice Parent) { | ||
Title = "" ; | ||
Id = Class.Label; | ||
|
||
if (Algorithm?.Id != null) { | ||
Title = Class.Label + " " + Algorithm.Id.Label; | ||
Id += "_" + Algorithm.Id.Label; | ||
} | ||
|
||
if (Compress.Bits > 0) { | ||
Title += $" ({Compress.Bits} bits compressed)"; | ||
Id += "_" + $"{Compress.Bits}"; | ||
} | ||
if (Note?.Text != null) { | ||
Title = Note.Text; | ||
} | ||
} | ||
} | ||
|
||
public partial class Code { | ||
public override void Init(_Choice Parent) { | ||
|
||
|
||
} | ||
} | ||
} |
Oops, something went wrong.