Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
VIZ.Framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘龙飞
VIZ.Framework
Commits
18f1ed6f
Commit
18f1ed6f
authored
Dec 09, 2022
by
liulongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目调整
parent
e2f651d3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
7 deletions
+43
-7
VIZ.Framework.Plugin/VIZ.Framework.Plugin.csproj
+18
-0
VIZ.Framework.TVP.Golf/Model/GolfDeviceModel.cs
+3
-3
VIZ.Framework.TVP/VIZ.Framework.TVP.csproj
+18
-0
VIZ.Framework.sln
+4
-4
No files found.
VIZ.Framework.Plugin/VIZ.Framework.Plugin.csproj
View file @
18f1ed6f
...
...
@@ -31,6 +31,24 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.14.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\..\VIZ.TVP\packages\log4net.2.0.14\lib\net45\log4net.dll</HintPath>
...
...
VIZ.Framework.TVP.Golf/Model/GolfDeviceModel.cs
View file @
18f1ed6f
...
...
@@ -570,9 +570,9 @@ namespace VIZ.Framework.TVP.Golf
{
if
((
state
.
mBallCount
==
0
)
&&
(
this
.
BallCount
!=
0
))
// The ball disappeared (perhaps it was hit)
{
if
(!
mNewShotReceived
)
// there may have been a misfire (a "new shot" event is not sent after a misfire)
Application
.
Current
.
Dispatcher
.
Invoke
(
new
Action
(()
=>
{
GetFlashStatistics
();
GetShotCount
();
}));
mNewShotReceived
=
false
;
// reset when ball count = 0 (guaranteed after a new shot - okay if just moved out of view)
//
if (!mNewShotReceived) // there may have been a misfire (a "new shot" event is not sent after a misfire)
//
Application.Current.Dispatcher.Invoke(new Action(() => { GetFlashStatistics(); GetShotCount(); }));
//
mNewShotReceived = false; // reset when ball count = 0 (guaranteed after a new shot - okay if just moved out of view)
}
// 更新球数量
...
...
VIZ.Framework.TVP/VIZ.Framework.TVP.csproj
View file @
18f1ed6f
...
...
@@ -31,6 +31,24 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.14.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.14\lib\net45\log4net.dll</HintPath>
...
...
VIZ.Framework.sln
View file @
18f1ed6f
...
...
@@ -272,8 +272,8 @@ Global
{6FBD7D1A-C16E-486B-A98C-727C09E514B8}.Release|x86.Build.0 = Release|Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x64.ActiveCfg = Debug|
Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x64.Build.0 = Debug|
Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x64.ActiveCfg = Debug|
x64
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x64.Build.0 = Debug|
x64
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x86.ActiveCfg = Debug|Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Debug|x86.Build.0 = Debug|Any CPU
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Release|Any CPU.ActiveCfg = Release|Any CPU
...
...
@@ -284,8 +284,8 @@ Global
{3E7AF8B3-24AA-44EE-A242-30E4E3DCC20C}.Release|x86.Build.0 = Release|Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|Any CPU.Build.0 = Debug|Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x64.ActiveCfg = Debug|
Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x64.Build.0 = Debug|
Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x64.ActiveCfg = Debug|
x64
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x64.Build.0 = Debug|
x64
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x86.ActiveCfg = Debug|Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Debug|x86.Build.0 = Debug|Any CPU
{39A3CDBE-2132-4C71-BF2F-F99A9E966109}.Release|Any CPU.ActiveCfg = Release|Any CPU
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment