-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCefIntegrationBehavior.cs
145 lines (119 loc) · 4.09 KB
/
CefIntegrationBehavior.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
using CefUnityLib;
using System;
using System.Diagnostics;
using System.Threading;
using UnityEngine;
using UnityEngine.UI;
public class CefIntegrationBehavior : MonoBehaviour
{
protected RawImage targetImage;
protected CefController cef;
protected Texture2D browserTexture;
protected byte[] frameBuffer;
protected bool frameBufferChanged;
public string PipeName = "default";
void Start()
{
targetImage = GetComponent<RawImage>();
browserTexture = new Texture2D(1024, 768, TextureFormat.BGRA32, false);
cef = new CefController(PipeName);
if (StartAndConnectServer())
{
UnityEngine.Debug.Log("[CEF] Connected to proxy server process.");
}
targetImage.texture = browserTexture;
targetImage.uvRect = new Rect(0f, 0f, 1f, -1f);
cef.MessageReceived += OnCefMessage;
frameBuffer = new byte[0];
frameBufferChanged = false;
}
protected bool StartAndConnectServer()
{
// First connection attempt
try
{
cef.Connect();
return true;
}
catch (Exception e)
{
UnityEngine.Debug.Log("[CEF] Proxy server not responding, attempting to start server executable. Connection error details: " + e.Message);
}
// Determine path to CEF Unity Server
//string cefPath = Application.dataPath;
string cefPath = @"C:\YOUR_TEST_PATH\";
string cefPathExec = cefPath + "/CefUnityServer.exe";
// Start the process, hide it, and listen to its output
var processInfo = new ProcessStartInfo();
processInfo.Arguments = cef.PipeName;
processInfo.CreateNoWindow = true;
processInfo.FileName = cefPathExec;
processInfo.WorkingDirectory = cefPath;
processInfo.UseShellExecute = false;
processInfo.RedirectStandardInput = true;
processInfo.RedirectStandardOutput = true;
processInfo.WindowStyle = ProcessWindowStyle.Hidden;
var process = Process.Start(processInfo);
process.ErrorDataReceived += Process_ErrorDataReceived;
process.OutputDataReceived += Process_OutputDataReceived;
// Basic wait time to let the server start (usually takes a quarter second or so on a reasonable machine)
Thread.Sleep(250);
// Wait for the app to start - as long as it doesn't fail and we don't exceed a certain timeout
int attemptsRemaining = 10;
Exception lastEx = null;
do
{
try
{
// Connect - if okay, break out and proceed
cef.Connect();
return true;
}
catch (Exception ex)
{
// Connect failed, wait a bit and try again
UnityEngine.Debug.Log("[CEF] Proxy server not responding. {0} attempt(s) remaining. Connection error details: " + ex.Message);
attemptsRemaining--;
lastEx = ex;
if (attemptsRemaining <= 0)
{
break;
}
else
{
Thread.Sleep(100);
}
}
}
while (true);
UnityEngine.Debug.Log("[CEF] Proxy server failed to start! (Hard failure)");
throw lastEx;
}
private void Process_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
throw new NotImplementedException();
}
private void Process_ErrorDataReceived(object sender, DataReceivedEventArgs e)
{
throw new NotImplementedException();
}
protected void OnCefMessage(object sender, PipeProtoMessage p)
{
switch (p.Opcode)
{
case PipeProto.OPCODE_FRAME:
frameBuffer = p.Payload;
frameBufferChanged = true;
break;
}
}
void Update()
{
if (frameBufferChanged)
{
browserTexture.LoadRawTextureData(frameBuffer);
browserTexture.Apply();
frameBufferChanged = false;
}
}
}