| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- //
- // Copyright (c) 2014-2016 THUNDERBEAST GAMES LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include <Atomic/Core/StringUtils.h>
- #include <Atomic/IO/Log.h>
- #include <Atomic/IO/FileSystem.h>
- #include <Atomic/Resource/ResourceCache.h>
- #include "../ToolSystem.h"
- #include "../ToolEnvironment.h"
- #include "../Project/Project.h"
- #include "../Project/ProjectSettings.h"
- #include "../Assets/AssetDatabase.h"
- #include "BuildWindows.h"
- #include "BuildSystem.h"
- #include "BuildEvents.h"
- namespace ToolCore
- {
- BuildWindows::BuildWindows(Context * context, Project *project) : BuildBase(context, project, PLATFORMID_WINDOWS)
- {
- }
- BuildWindows::~BuildWindows()
- {
- }
- void BuildWindows::Initialize()
- {
- ToolSystem* tsystem = GetSubsystem<ToolSystem>();
- Project* project = tsystem->GetProject();
- Vector<String> defaultResourcePaths;
- GetDefaultResourcePaths(defaultResourcePaths);
-
- for (unsigned i = 0; i < defaultResourcePaths.Size(); i++)
- {
- AddResourceDir(defaultResourcePaths[i]);
- }
- BuildDefaultResourceEntries();
-
- // Include the project resources and cache separately
- AddProjectResourceDir(project->GetResourcePath());
- AssetDatabase* db = GetSubsystem<AssetDatabase>();
- String cachePath = db->GetCachePath();
- AddProjectResourceDir(cachePath);
- BuildProjectResourceEntries();
- }
- bool BuildWindows::CheckIncludeResourceFile(const String& resourceDir, const String& fileName)
- {
- // #623 BEGIN TODO: Skip files that have a converted version in the cache
- AssetDatabase* db = GetSubsystem<AssetDatabase>();
- String cachePath = db->GetCachePath();
- if (resourceDir != cachePath)
- {
- String ext = GetExtension(fileName);
- if (ext == ".jpg" || ext == ".png" || ext == ".tga")
- {
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- String compressedPath = cachePath + "DDS/" + fileName + ".dds";
- if (fileSystem->FileExists(compressedPath))
- return false;
- }
- }
- // #623 END TODO
-
- return BuildBase::CheckIncludeResourceFile(resourceDir, fileName);
- }
- bool BuildWindows::BuildManaged(const String& buildPath)
- {
- ToolEnvironment* tenv = GetSubsystem<ToolEnvironment>();
- ToolSystem* toolSystem = GetSubsystem<ToolSystem>();
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- Project* project = toolSystem->GetProject();
- ProjectSettings* settings = project->GetProjectSettings();
- String projectPath = project->GetProjectPath();
- String releaseBins = projectPath + "AtomicNET/Release/Bin/Desktop/";
- String releaseExe = releaseBins + settings->GetName() + ".exe";
- if (!fileSystem->FileExists(releaseExe))
- {
- BuildError(ToString("Error building managed project, please compile the release binary %s before building", releaseExe.CString()));
- return false;
- }
-
- StringVector results;
- StringVector filtered;
- fileSystem->ScanDir(results, releaseBins, "", SCAN_FILES, false);
- StringVector filterList;
- StringVector::Iterator itr = results.Begin();
- while (itr != results.End())
- {
- unsigned i;
- for (i = 0; i < filterList.Size(); i++)
- {
- if (itr->Contains(filterList[i]))
- break;
- }
- if (i == filterList.Size())
- filtered.Push(*itr);
- itr++;
- }
- for (unsigned i = 0; i < filtered.Size(); i++)
- {
- String filename = filtered[i];
- if (!BuildCopyFile(releaseBins + filename, buildPath_ + "/" + filename))
- return false;
- }
- return true;
-
- }
- void BuildWindows::BuildNative(const String& buildPath)
- {
- BuildLog("Building Native Application");
- ToolEnvironment* tenv = GetSubsystem<ToolEnvironment>();
- String playerBinary = tenv->GetPlayerBinary();
- String d3d9dll = GetPath(playerBinary) + "/D3DCompiler_47.dll";
- if (!BuildCopyFile(playerBinary, buildPath_ + "/AtomicPlayer.exe"))
- return;
- if (!BuildCopyFile(d3d9dll, buildPath_ + "/D3DCompiler_47.dll"))
- return;
- }
- void BuildWindows::Build(const String& buildPath)
- {
- BuildSystem* buildSystem = GetSubsystem<BuildSystem>();
- FileSystem* fileSystem = GetSubsystem<FileSystem>();
- ToolEnvironment* tenv = GetSubsystem<ToolEnvironment>();
- ToolSystem* tsystem = GetSubsystem<ToolSystem>();
- Project* project = tsystem->GetProject();
- buildPath_ = AddTrailingSlash(buildPath) + GetBuildSubfolder();
- BuildLog("Starting Windows Deployment");
- Initialize();
- if (!BuildClean(buildPath_))
- return;
- String rootSourceDir = tenv->GetRootSourceDir();
- if (!BuildCreateDirectory(buildPath_))
- return;
- if (!BuildCreateDirectory(buildPath_ + "/AtomicPlayer_Resources"))
- return;
- String resourcePackagePath = buildPath_ + "/AtomicPlayer_Resources/AtomicResources" + PAK_EXTENSION;
- GenerateResourcePackage(resourcePackagePath);
- if (buildFailed_)
- return;
- if (resourcesOnly_)
- return;
- if (!BuildCreateDirectory(buildPath_ + "/Settings"))
- return;
- String engineJSON(GetSettingsDirectory() + "/Engine.json");
- if (fileSystem->FileExists(engineJSON))
- {
- if (!BuildCopyFile(engineJSON, buildPath_ + "/Settings/Engine.json"))
- return;
- }
- // TODO: Set project as managed and don't key off project assembly
- if (fileSystem->FileExists(project->GetResourcePath() + project->GetProjectSettings()->GetName() + ".dll"))
- {
- if (!BuildManaged(buildPath))
- return;
- }
- else
- {
- BuildNative(buildPath);
- }
-
- BuildLog("Windows Deployment Complete");
- buildSystem->BuildComplete(PLATFORMID_WINDOWS, buildPath_);
- }
- }
|