Ejemplo n.º 1
0
        void Tick(float time)
        {
            FVector rot = this.GetOwner().GetActorScale3D();

            rot.X += 5 * time;
            if (rot.X > 200)
            {
                rot.X = 10;
            }
            this.GetOwner().SetActorScale3D(rot);

            APlayerController pc = UGameplayStatics.GetPlayerController(GetWorld(), 0);

            if (pc != null)
            {
                if (pc.IsInputKeyDown(GetKey("I")))
                {
                    FLinearColor Color = new FLinearColor();
                    Color.A = 1.0f;
                    Color.R = 1.0f;

                    UKismetSystemLibrary.DrawDebugBox(GetWorld(), this.GetOwner().GetTransform().GetLocation(), new FVector(100), Color, this.GetOwner().GetTransform().Rotator(), 0.0f, 0.3f);
                }
            }
        }
Ejemplo n.º 2
0
        public static void OpenProject(string pluginBaseDir)
        {
#if WITH_EDITOR
            var sourceDir      = Path.Combine(pluginBaseDir, "Project");
            var destinationDir = Path.Combine(FPaths.GameDir(), "Project");
            var solutionPath   = Path.Combine(FPaths.GameDir(), "Project", "Script.sln");
            //Check the script works
            if (!Directory.Exists(destinationDir))
            {
                //Copy the script template to the project directory
                UObject.LogInfo($"Copy script project template from '{sourceDir}' to '{destinationDir}'");
                CopyFolder(destinationDir, sourceDir);
            }

            if (UGameplayStatics.GetPlatformName() == "Windows")
            {
                var installDir = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\devenv.exe", null, "").ToString();
                if (string.IsNullOrEmpty(installDir))
                {
                    UObject.LogError("Can't find devenv.exe");
                    return;
                }
                Process.Start(installDir, solutionPath);
            }
            else
            {
                //No tool to display item location
                UObject.LogWarning("C# script solution file located at " + solutionPath);
            }
#endif
        }
Ejemplo n.º 3
0
        List <AActor> GetAllPins()
        {
            List <AActor> outPinActors;

            UGameplayStatics.GetAllActorsWithTag(MyOwner, gamemode.PinTag, out outPinActors);
            return(outPinActors);
        }
Ejemplo n.º 4
0
 public static T GetInstance(UObject worldContextObject)
 {
     if (ThisInstance == null)
     {
         ThisInstance = UGameplayStatics.GetGameMode(worldContextObject).GetComponentByClass <T>();
     }
     return(ThisInstance);
 }
        public static UBowlGameMasterComponent GetInstance(UObject worldContextObject)
        {
            var _instanceHelper = ThisInstance.Get(worldContextObject);

            if (_instanceHelper == null)
            {
                _instanceHelper = UGameplayStatics.GetGameMode(worldContextObject).GetComponentByClass <UBowlGameMasterComponent>();
                ThisInstance.Set(worldContextObject, _instanceHelper);
            }
            return(_instanceHelper);
        }
Ejemplo n.º 6
0
        void OpenProject()
        {
            //检查脚本工程
            if (!Directory.Exists(Path.Combine(FPaths.GameDir(), "Project")))
            {
                //复制脚本模板到工程目录
                UObject.LogInfo("Copy script project template");
                string ProjectDir = Path.Combine(pluginBaseDir, "Project");
                CopyFolder(Path.Combine(FPaths.GameDir(), "Project"), ProjectDir);

                ////重命名静态库,否则打包会失败
                //string MonoHelperFilePathName = Path.Combine(FPaths.GamePluginsDir(), "Mono", "Binaries", "Win64", "UE4-MonoHelper.lib");
                //if(File.Exists(MonoHelperFilePathName))
                //{
                //    File.Move(MonoHelperFilePathName, Path.Combine(FPaths.GamePluginsDir(), "Mono", "Binaries", "Win64", gameName + "-MonoHelper.lib"));
                //}
                //else
                //{
                //    UObject.LogWarning("File Not Found:"+ MonoHelperFilePathName);
                //}
                //string MonoPluginFilePathName = Path.Combine(FPaths.GamePluginsDir(), "Mono", "Binaries", "Win64", "UE4-MonoPlugin.lib");
                //if (File.Exists(MonoPluginFilePathName))
                //{
                //    File.Move(MonoPluginFilePathName, Path.Combine(FPaths.GamePluginsDir(), "Mono", "Binaries", "Win64", gameName + "-MonoPlugin.lib"));
                //}
                //else
                //{
                //    UObject.LogWarning("File Not Found:" + MonoPluginFilePathName);
                //}
            }

            if (UGameplayStatics.GetPlatformName() == "Windows")
            {
                string InstallDir = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\devenv.exe",
                                                                      null, "").ToString();
                if (string.IsNullOrEmpty(InstallDir))
                {
                    UObject.LogWarning("Can't find devenv.exe");
                    return;
                }
                Process.Start(InstallDir, Path.Combine(FPaths.GameDir(), "Project", "Script.sln"));
            }
            else
            {
                //无工具,显示项目位置
                UObject.LogWarning("C# script solution file located at " + Path.Combine(FPaths.GameDir(), "Project", "Script.sln"));
            }
        }
Ejemplo n.º 7
0
        public static UPinManagerComponent GetInstance(UObject worldContextObject)
        {
            var _instanceHelper = ThisInstance.Get(worldContextObject);

            if (_instanceHelper == null)
            {
                var _gamemode = UBowlGameModeComponent.GetInstance(worldContextObject);
                if (_gamemode != null)
                {
                    List <AActor> sweepActors;
                    UGameplayStatics.GetAllActorsWithTag(worldContextObject, _gamemode.PinManagerTag, out sweepActors);
                    if (sweepActors[0] != null)
                    {
                        _instanceHelper = sweepActors[0].GetComponentByClass <UPinManagerComponent>();
                        ThisInstance.Set(worldContextObject, _instanceHelper);
                    }
                }
            }
            return(_instanceHelper);
        }
Ejemplo n.º 8
0
        void AOT()
        {
            UObject.LogInfo("AOT Start");

            aot_filename_list = new List <string>();
            aot_filename_list.Clear();

            string last_work_dir = System.Environment.CurrentDirectory;

            try
            {
                bool isWindows = UGameplayStatics.GetPlatformName() == "Windows";
                bool isMac     = UGameplayStatics.GetPlatformName() == "Mac";

                if (!isWindows && !isMac)
                {
                    return;
                }

                //遍历目录,aot每个文件
                string MAC_AOT_MONO_PATH;
                if (isWindows)
                {
                    MAC_AOT_MONO_PATH = Path.GetFullPath(Path.Combine(pluginBaseDir, "mono_aot", "aot_host_windows_target_armv7", "bin"));
                }
                else
                {
                    MAC_AOT_MONO_PATH = Path.GetFullPath(Path.Combine(pluginBaseDir, "mono_aot", "aot_host_mac_target_armv7", "bin"));
                }

                string aot_target    = "armv7";
                string mscorlib_path = Path.GetFullPath(Path.Combine(pluginBaseDir, "mono_aot", "pre_aot_files", aot_target));

                string ios_predefine_header_file_pathname = Path.GetFullPath(Path.Combine(pluginBaseDir, "Source", "MonoPlugin", "Private", "ios_predefine.h"));
                string ios_private_path = Path.GetFullPath(Path.Combine(pluginBaseDir, "Source", "MonoPlugin", "Private", "IOS"));

                string outpath  = Path.GetFullPath(Path.Combine(pluginBaseDir, "AOT"));
                string temppath = Path.Combine(outpath, "Temp");

                if (Directory.Exists(outpath))
                {
                    Directory.Delete(outpath, true);
                }
                if (Directory.Exists(temppath))
                {
                    Directory.Delete(temppath, true);
                }

                Directory.CreateDirectory(outpath);
                Directory.CreateDirectory(temppath);


                //拷贝所有dll到temp文件夹
                {
                    List <string> dllPath = new List <string>();
                    dllPath.Add(engineAssembliesDir);
                    dllPath.Add(gameAssembliesDir);
                    dllPath.Add(Path.Combine(FPaths.GameDir(), "Content", "Scripts", "framework"));

                    foreach (var dir in dllPath)
                    {
                        string[] files = Directory.GetFiles(dir, "*.dll", SearchOption.AllDirectories);
                        foreach (var file in files)
                        {
                            string filename = Path.GetFileName(file);
                            string filepath = file.Substring(0, file.Length - filename.Length);
                            //跳过无效的UnrealEngine.dll
                            if (filename == "UnrealEngine.dll")
                            {
                                if ((aot_target == "armv7" || aot_target == "armv7s") && !filepath.Contains("Game_32bits"))
                                {
                                    continue;
                                }
                                else if (aot_target == "arm64" && !filepath.Contains("Game_64bits"))
                                {
                                    continue;
                                }
                            }
                            UObject.LogInfo("copy {0} to {1}", filename, outpath);
                            File.Copy(file, Path.Combine(temppath, filename), true);
                        }
                    }
                }


                //AOT所有目标temp文件夹的文件
                {
                    string[] files = Directory.GetFiles(temppath, "*.dll", SearchOption.AllDirectories);
                    foreach (var file in files)
                    {
                        string filename = Path.GetFileName(file);
                        string filepath = file.Substring(0, file.Length - filename.Length);

                        //跳过此文件
                        if (filename == "mscorlib.dll")
                        {
                            aot_filename_list.Add("mono_aot_module_mscorlib_info");
                            //copy mscorlib.dll.a
                            File.Copy(Path.Combine(mscorlib_path, "mscorlib.dll.a"), Path.Combine(outpath, "mscorlib.dll.a"));
                            //File.Copy(Path.Combine(mscorlib_path, "mscorlib.dll.s"), Path.Combine(ios_private_path, "mscorlib.dll.s"),true);
                            continue;
                        }

                        //AOT
                        {
                            System.Environment.CurrentDirectory = MAC_AOT_MONO_PATH;

                            Process proc = new System.Diagnostics.Process();
                            proc.StartInfo.WorkingDirectory = MAC_AOT_MONO_PATH;
                            if (isWindows)
                            {
                                proc.StartInfo.FileName  = Path.Combine(MAC_AOT_MONO_PATH, "mono-sgen.exe");
                                proc.StartInfo.Arguments = string.Format(" --aot=full,asmonly,static \"{0}\"", file);
                            }
                            else
                            {
                                proc.StartInfo.FileName  = "./armv7-apple-darwin-mono-sgen";
                                proc.StartInfo.Arguments = string.Format("--aot=full,asmonly,static,nrgctx-trampolines=8096,nimt-trampolines=8096,ntrampolines=4048 \"{0}\"", file);
                            }

                            proc.StartInfo.CreateNoWindow         = true;
                            proc.StartInfo.UseShellExecute        = false;
                            proc.StartInfo.RedirectStandardOutput = true;
                            proc.StartInfo.RedirectStandardError  = true;
                            proc.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
                            proc.ErrorDataReceived  += new DataReceivedEventHandler(ErrorHandler);

                            UObject.LogInfo("aot {0}", proc.StartInfo.Arguments);
                            proc.Start();

                            proc.BeginOutputReadLine();
                            proc.BeginErrorReadLine();

                            proc.WaitForExit();
                            proc.Close();

                            //复制到Private/IOS目录
                            //File.Copy(file+".s", Path.Combine(ios_private_path, filename +".s"), true);
                        }

                        if (isMac)
                        {
                            //AS
                            {
                                Process proc = new System.Diagnostics.Process();
                                proc.StartInfo.WorkingDirectory = filepath;
                                //proc.StartInfo.FileName = "as";
                                //proc.StartInfo.Arguments = string.Format("-arch {2} -march=armv7-a -mno-thumb -miphoneos-version-min=7.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk -o {0}.o {1}.s", filename, filename, aot_target);
                                proc.StartInfo.FileName  = "xcrun";
                                proc.StartInfo.Arguments = string.Format("-sdk iphoneos as -arch {2} -mno-thumb -miphoneos-version-min=7.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk -o {0}.o {1}.s", filename, filename, aot_target);

                                proc.StartInfo.CreateNoWindow         = true;
                                proc.StartInfo.UseShellExecute        = false;
                                proc.StartInfo.RedirectStandardOutput = true;
                                proc.StartInfo.RedirectStandardError  = true;
                                proc.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
                                proc.ErrorDataReceived  += new DataReceivedEventHandler(ErrorHandler);

                                UObject.LogInfo("as {0}", proc.StartInfo.Arguments);
                                proc.Start();

                                proc.BeginOutputReadLine();
                                proc.BeginErrorReadLine();

                                proc.WaitForExit();
                                proc.Close();
                            }

                            //ar
                            {
                                Process proc = new System.Diagnostics.Process();
                                proc.StartInfo.WorkingDirectory = filepath;
                                //proc.StartInfo.FileName = "ar";
                                //proc.StartInfo.Arguments = string.Format("-r \"{0}.a\" {1}.o", Path.GetFullPath(Path.Combine(outpath, filename)), filename);

                                proc.StartInfo.FileName  = "xcrun";
                                proc.StartInfo.Arguments = string.Format("-sdk iphoneos ar rcu \"{0}.a\" {1}.o", Path.GetFullPath(Path.Combine(outpath, filename)), filename);

                                proc.StartInfo.CreateNoWindow         = true;
                                proc.StartInfo.UseShellExecute        = false;
                                proc.StartInfo.RedirectStandardOutput = true;
                                proc.StartInfo.RedirectStandardError  = true;
                                proc.OutputDataReceived += new DataReceivedEventHandler(OutputHandler);
                                proc.ErrorDataReceived  += new DataReceivedEventHandler(ErrorHandler);

                                UObject.LogInfo("ar {0}", proc.StartInfo.Arguments);
                                proc.Start();

                                proc.BeginOutputReadLine();
                                proc.BeginErrorReadLine();

                                proc.WaitForExit();
                                proc.Close();
                            }
                        }
                    }
                }

                //删除temp文件夹
                {
                    Directory.Delete(temppath, true);
                }

                //构建ios预定义头文件
                System.Text.StringBuilder sb = new System.Text.StringBuilder();
                sb.AppendLine("extern \"C\"{");
                sb.AppendLine("\tvoid mono_aot_register_module(void* pt);");
                foreach (var filename in aot_filename_list)
                {
                    sb.AppendFormat("\textern void* {0};", filename);
                    sb.AppendLine();
                }
                sb.AppendLine("}");

                sb.AppendLine("void RegisterMonoModules(){");
                foreach (var filename in aot_filename_list)
                {
                    sb.AppendFormat("\tmono_aot_register_module({0});", filename);
                    sb.AppendLine();
                }
                sb.AppendLine("}");
                aot_filename_list.Clear();
                //写入文件
                File.WriteAllText(ios_predefine_header_file_pathname, sb.ToString(), System.Text.Encoding.UTF8);
            }
            catch (Exception e)
            {
                UObject.LogError(e.Message);
                UObject.LogError(e.StackTrace);
            }
            finally
            {
                System.Environment.CurrentDirectory = last_work_dir;
            }
        }