-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
10 changed files
with
76 additions
and
16 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
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,31 @@ | ||
using System; | ||
using System.IO; | ||
using System.Reflection; | ||
|
||
namespace PluginHelper | ||
{ | ||
public class ResourceHelper | ||
{ | ||
public static string LoadEmbeddedResourceString(string resourceName) | ||
{ | ||
|
||
var result = string.Empty; | ||
|
||
try | ||
{ | ||
var assembly = Assembly.GetExecutingAssembly(); | ||
var name = assembly.GetName().Name; | ||
using (Stream stream = assembly.GetManifestResourceStream($"{name}.Resources.{resourceName}")) | ||
using (StreamReader reader = new StreamReader(stream)) | ||
{ | ||
result = reader.ReadToEnd(); } | ||
} | ||
catch (Exception ex) | ||
{ | ||
Console.WriteLine(ex.Message); | ||
} | ||
|
||
return result; | ||
} | ||
} | ||
} |
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
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,19 @@ | ||
<h2>Instructions</h2> | ||
<p> | ||
<ol> | ||
<li>Start your Playstation<sup>TM</sup></li> | ||
<li>Start the plugin</li> | ||
<li>Enter you Console's IP address, <i>(check it in Console Network Settings)</i> or leave it on <b>autodiscovery</b> <font color="" yellow"">(255.255.255.255)</font> | ||
</ol> | ||
</p> | ||
|
||
<h3>Working with External Programs</h3> | ||
<p>If you are using other software that uses telemetry like Simhub, you can have that software forward the telemetry on a different port. In which case you may enter the alternative port when clicking Start Plugin</p> | ||
|
||
<h3>UDP Forwarding</h3> | ||
<p>Alternatively, you can also check the UDP Forwarding checkbox to allow Game Engine to forward data on a different port, which can then be used by other software such as Simhub</p> | ||
|
||
<h3><font color="red">Notes</font></h3> | ||
<p>When port forwarding you may need to use the ipaddress instead of the autodisovery</p> | ||
|
||
<small>version 0.9.4</small> |
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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<h2>Instructions</h2> | ||
<small>Version (v1.1.4)</small> | ||
<p> | ||
<ol> | ||
<li>Install OLMOD <a href="https: //olmod.overloadmaps.com/">click here</a></li> | ||
<li>Install GameMod.dll with telemetry into your overload directory (<a href="https://github.com/drowhunter/olmod/releases/latest">click here</a>)</li> | ||
<li>Launch Olmod.exe to start the game ('Telemetry' must appear on the upper right corner of the game's main menu). | ||
</ol> | ||
</p> | ||
<small>version 1.1.4</small> |
Binary file not shown.