add playground code

This commit is contained in:
Connor Ivy
2023-09-29 08:55:26 -05:00
parent c964031be0
commit 59a372a35c
6 changed files with 189 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2E3F8501-D253-4C2C-8700-9DBAC0C32029}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>CSiAPIPlayground</RootNamespace>
<AssemblyName>CSiAPIPlayground</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<LangVersion>8</LangVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Playground.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CSiAPIv1">
<Version>1.0.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
+25
View File
@@ -0,0 +1,25 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34003.232
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSiAPIPlayground", "CSiAPIPlayground.csproj", "{2E3F8501-D253-4C2C-8700-9DBAC0C32029}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2E3F8501-D253-4C2C-8700-9DBAC0C32029}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E3F8501-D253-4C2C-8700-9DBAC0C32029}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E3F8501-D253-4C2C-8700-9DBAC0C32029}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E3F8501-D253-4C2C-8700-9DBAC0C32029}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7BC120DE-8DC4-4E2A-BE10-E2947BA73BD4}
EndGlobalSection
EndGlobal
+20
View File
@@ -0,0 +1,20 @@
using CSiAPIv1;
namespace CSiAPIPlayground
{
public class Playground
{
private readonly cSapModel sapModel;
public Playground(cSapModel sapModel)
{
this.sapModel = sapModel;
}
public void Play()
{
// do something here
sapModel.CoordSys.SetCoordSys("newSystem", 0, 0, 0, 45, 0, 0);
}
}
}
+41
View File
@@ -0,0 +1,41 @@
using System;
using CSiAPIv1;
namespace CSiAPIPlayground
{
class Program
{
private const string ProgID_SAP2000 = "CSI.SAP2000.API.SapObject";
private const string ProgID_ETABS = "CSI.ETABS.API.ETABSObject";
private const string ProgID_CSiBridge = "CSI.CSiBridge.API.SapObject";
private const string ProgID_SAFE = "CSI.SAFE.API.SAFEObject";
static void Main(string[] _)
{
var apiObj = GetActiveAPIObject(new Helper());
var playground = new Playground(apiObj.SapModel);
playground.Play();
}
private static cOAPI GetActiveAPIObject(Helper helper)
{
if (helper.GetObject(ProgID_ETABS) is cOAPI etabsModel)
{
return etabsModel;
}
else if (helper.GetObject(ProgID_SAP2000) is cOAPI sapModel)
{
return sapModel;
}
else if (helper.GetObject(ProgID_SAFE) is cOAPI safeModel)
{
return safeModel;
}
else if (helper.GetObject(ProgID_CSiBridge) is cOAPI bridgeModel)
{
return bridgeModel;
}
throw new Exception("Unable to find running instance of csi application :(");
}
}
}
+36
View File
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SimpleSAPPlugin")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SimpleSAPPlugin")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("2e3f8501-d253-4c2c-8700-9dbac0c32029")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]