-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete reorganization and making it CI friendly
- Loading branch information
Showing
364 changed files
with
62,878 additions
and
29,394 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 |
---|---|---|
|
@@ -26,6 +26,7 @@ build/ | |
bld/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
[Ii]ntermediate/ | ||
|
||
# Visual Studio 2015 cache/options directory | ||
.vs/ | ||
|
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,3 @@ | ||
[submodule "dlls/vvvvlib"] | ||
path = dlls/vvvvlib | ||
url = https://github.com/vvvvpm/vvvvlib.git |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,64 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel.Composition; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Reflection; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using md.stdl.Interfaces; | ||
using mp.pddn; | ||
using VVVV.PluginInterfaces.V2; | ||
|
||
namespace mp.dx.Nodes | ||
{ | ||
[Startable] | ||
public class VersionWriter : IStartable | ||
{ | ||
public static string VersionPath { get; private set; } | ||
public static string VvvvDir { get; private set; } | ||
|
||
public void Start() | ||
{ | ||
var ver = typeof(VersionWriter).Assembly.GetName().Version.ToString(); | ||
VvvvDir = Path.GetDirectoryName(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName); | ||
if (VvvvDir != null) | ||
{ | ||
VersionPath = Path.Combine(VvvvDir, "packs", "mp.dx", "version.info"); | ||
File.WriteAllText(VersionPath, ver); | ||
} | ||
else | ||
{ | ||
VersionPath = "null"; | ||
} | ||
} | ||
|
||
public void Shutdown() { Start(); } | ||
} | ||
|
||
[PluginInfo( | ||
Name = "About", | ||
Category = "Mp.Dx", | ||
Author = "microdee" | ||
)] | ||
public class AboutNode : IPluginEvaluate, IPartImportsSatisfiedNotification | ||
{ | ||
[Output("mp.dx Version")] public ISpread<string> FVer; | ||
[Output("md.stdl Version")] public ISpread<string> FMdStdlVer; | ||
[Output("mp.pddn Version")] public ISpread<string> FMpPddnVer; | ||
|
||
[Output("Version File Path")] public ISpread<string> FVerPath; | ||
[Output("VVVV Dir")] public ISpread<string> FVDir; | ||
|
||
public void Evaluate(int SpreadMax) { } | ||
public void OnImportsSatisfied() | ||
{ | ||
FVer[0] = typeof(AboutNode).Assembly.GetName().Version.ToString(); | ||
FMdStdlVer[0] = typeof(IMainlooping).Assembly.GetName().Version.ToString(); | ||
FMpPddnVer[0] = typeof(SpreadWrapper).Assembly.GetName().Version.ToString(); | ||
|
||
FVDir[0] = VersionWriter.VvvvDir; | ||
FVerPath[0] = VersionWriter.VersionPath; | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
30 changes: 15 additions & 15 deletions
30
src/DX11Utils/DX11Utils/DX11MessageTypes.cs → DX11Utils/DX11MessageTypes.cs
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,16 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using FeralTic.DX11.Resources; | ||
using VVVV.DX11; | ||
using VVVV.Packs.Messaging; | ||
|
||
namespace mp.dx.dx11 | ||
{ | ||
class DX11Types : TypeProfile | ||
{ | ||
public TypeRecord<DX11Resource<IDX11ReadableResource>> ReadableResource = new TypeRecord<DX11Resource<IDX11ReadableResource>>("ReadableResource", CloneBehaviour.Null, () => null); | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using FeralTic.DX11.Resources; | ||
using VVVV.DX11; | ||
using VVVV.Packs.Messaging; | ||
|
||
namespace mp.dx.dx11 | ||
{ | ||
class DX11Types : TypeProfile | ||
{ | ||
public TypeRecord<DX11Resource<IDX11ReadableResource>> ReadableResource = new TypeRecord<DX11Resource<IDX11ReadableResource>>("ReadableResource", CloneBehaviour.Null, () => null); | ||
} | ||
} |
Oops, something went wrong.