Unity开启外部EXE程序

news/2024/11/29 22:11:51/

Unity开启外部EXE

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using UnityEditor;
using UnityEngine;public class Unity_OpenExe : MonoBehaviour
{public string[] WebCamList;public List<Process> CamProcessList = new List<Process>();//使用查找任务栏[DllImport("user32.dll")]static extern IntPtr FindWindow(string strClassName, int nptWindowName);//当前窗口[DllImport("user32.dll")] static extern IntPtr GetForegroundWindow();//获取窗口位置以及大小[DllImport("user32.dll")] static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);[StructLayout(LayoutKind.Sequential)]private struct RECT{public int Left; //最左坐标public int Top; //最上坐标public int Right; //最右坐标public int Bottom; //最下坐标}[DllImport("user32.dll")]static extern IntPtr SetWindowLong(IntPtr hwnd, int _nIndex, int dwNewLong);[DllImport("user32.dll")]static extern bool SetWindowPos(IntPtr hWnd, int hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);[DllImport("user32.dll", SetLastError = true)]private static extern int GetWindowLong(IntPtr hWnd, int nIndex);const uint SWP_SHOWWINDOW = 0x0040;const int GWL_STYLE = -16;const int WS_BORDER = 1;const int WS_POPUP = 0x800000;Process X;Process Y;IntPtr intPtr1;private string ProcessName;List<string> exeS = new List<string>();private void Start(){
#if UNITY_EDITOR#elseOpenNetBox();
#endif}public void OpenNetBox(){UnityEngine.Debug.LogWarning("使用前请配置文件路径");if (WebCamList != null && WebCamList.Length > 0){foreach (var item in WebCamList){Task.Run(() =>{try{string exePath = Application.streamingAssetsPath + "/" + item;Process webcam = Process.Start(exePath);IntPtr winIntPtr0 = FindWindow("PreviewDemo", 0);if (winIntPtr0 != null){//   UnityEngine.Debug.LogWarning("句柄找到");// SetWindowPos(winIntPtr0, 0, 500, 800, 500, 687, 3);//1280,970,600,400//1280,462,600,400}CamProcessList.Add(webcam);}catch (Exception ex){throw ex;}});}//Task.Run(() =>//{//    exePath1 = Application.streamingAssetsPath + "/" + "WebCam1/PreviewDemo.exe";//    X = Process.Start(exePath1);//    IntPtr winIntPtr0 = FindWindow("PreviewDemo", 0);//    if (winIntPtr0 != null)//    {//        UnityEngine.Debug.LogWarning("句柄找到");//        SetWindowPos(winIntPtr0, 0, 500, 800, 500, 687, 3);//        //1280,970,600,400//        //1280,462,600,400//    }//});}//Task.Run(() =>//{//    exePath2 = Application.streamingAssetsPath + "/" + "WebCam2/PreviewDemo.exe";//    Y = Process.Start(exePath2);//    IntPtr winIntPtr1 = FindWindow("PreviewDemo", 0);//    if (winIntPtr1 != null)//    {//        UnityEngine.Debug.LogWarning("句柄找到");//       // SetWindowPos(winIntPtr1, 0, 0, 0, 1280, 687, 3);//        SetWindowPos(winIntPtr1, 0, 0, 0, 1280, 767, 3);//    }//});if (string.IsNullOrEmpty(ProcessName)){//ProcessName = X.ProcessName;}}public void CloseNetBox(){X.Kill();Y.Kill();}private void OnDestroy(){foreach (var process in Process.GetProcesses()){if (process.ProcessName.Equals("PreviewDemo") && !process.HasExited)process.Kill();}if (CamProcessList != null){for (int i = 0; i < CamProcessList.Count; i++){if (CamProcessList[i] != null && !CamProcessList[i].HasExited){CamProcessList[i].Kill();}}}CamProcessList.Clear();//if (X != null)//{//    X.Kill();//}//if (Y != null)//{//    Y.Kill();//}}void Update(){}
}

http://www.ppmy.cn/news/1551007.html

相关文章

使用Hugo和GitHub Pages创建静态网站个人博客

不需要服务器&#xff0c;不需要域名&#xff0c;不需要数据库&#xff0c;可以选择模版&#xff0c;内容为Markdown格式。 Hugo&#xff1a;https://gohugo.io 文档&#xff1a;https://gohugo.io/getting-started/quick-start/ 中文文档&#xff1a;https://www.gohugo.or…

c++(斗罗大陆)

这次&#xff0c;作者编了斗罗大陆的武魂、魂力等级&#xff0c;目前只写到了11级 #include<iostream> #include<conio.h> #include<windows.h> #include<stdlib.h> #include<stdio.h> #include<time.h> #include<strin…

分布式下怎么优化处理数据,怎么代替Join

分布式下怎么优化处理数据&#xff0c;怎么代替Join 简单来说&#xff0c; 可以采用 数据冗余&#xff0c;有意地存储一些重复的数据&#xff0c;以此减少关联查询的需求 数据拆分与多次查询&#xff0c;将一次获取的多表数据&#xff0c;拆分多个单独的查询 使用数据仓库…

.Net框架以及桌面UI时间线

依托于.net框架&#xff0c;按照时间线可分为以下三种。 桌面应用的UI可分为以下三种。 2024.10.20

写个添加球队和展示球队的功能--laravel与inertia

先展示下最终效果,如下是展示球队的界面 如下是添加球队的界面 界面样式没怎么调整,不要在意这些细节。先说说操作流程 首先需要登录,没注册就注册一个账号。登录界面就不展示了。然后选中”NbaBasketballTeams“这个选项,就进入了展示球队的界面。然后点击…

【Bug合集】——Java大小写引起传参失败,获取值为null的解决方案

阿华代码&#xff0c;不是逆风&#xff0c;就是我疯 你们的点赞收藏是我前进最大的动力&#xff01;&#xff01; 希望本文内容能够帮助到你&#xff01;&#xff01; 目录 一&#xff1a;本文面向的人群 二&#xff1a;错误场景引入 三&#xff1a;正确场景引入 四&#xf…

iOS 系统中使用 webView 打印 html 的打印边距问题

需求是使用系统提供的打印功能将HTML代码打印出来 1、使用CSS page 设置边距&#xff08;iOS不生效&#xff09; page {margin: 0;padding: 0;size: A6 portrait; }在 Android 中边距设置生效的&#xff0c;但是在 iOS 系统使用CSS page规则是不生效的 当从 iOS 系统打印网页…

周末总结(2024/11/24)

工作 人际关系核心实践&#xff1a; 要学会随时回应别人的善意&#xff0c;执行时间控制在5分钟以内 坚持每天早会打招呼 遇到接不住的话题时拉低自己&#xff0c;抬高别人(无阴阳气息) 朋友圈点赞控制在5min以内&#xff0c;职场社交不要放在5min以外 职场的人际关系在面对利…