| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
- // Please see LICENSE.md in repository root for license information
- // https://github.com/AtomicGameEngine/AtomicGameEngine
- #include <Poco/File.h>
- #include <Atomic/IO/FileSystem.h>
- #include <Atomic/IO/File.h>
- #include "../ToolSystem.h"
- #include "../ToolEnvironment.h"
- #include "../Project/Project.h"
- #include "../Project/ProjectBuildSettings.h"
- #include "BuildMac.h"
- #include "BuildSystem.h"
- #include "AndroidProjectGenerator.h"
- namespace ToolCore
- {
- AndroidProjectGenerator::AndroidProjectGenerator(Context* context) :
- Object(context)
- {
- }
- AndroidProjectGenerator::~AndroidProjectGenerator()
- {
- }
- bool AndroidProjectGenerator::Generate()
- {
- if (!GenerateAndroidManifest())
- return false;
- if (!GenerateStringXML())
- return false;
- if (!GenerateLocalProperties())
- return false;
- if (!GenerateProjectProperties())
- return false;
- if (!GenerateActivitySource())
- return false;
- return true;
- }
- bool AndroidProjectGenerator::GenerateActivitySource()
- {
- ToolSystem* toolSystem = GetSubsystem<ToolSystem>();
- Project* project = toolSystem->GetProject();
- AndroidBuildSettings* settings = project->GetBuildSettings()->GetAndroidBuildSettings();
- String packageName = settings->GetPackageName();
- if (!packageName.Length())
- {
- errorText_ = "Invalid Package Name";
- return false;
- }
- Vector<String> elements = settings->GetPackageName().Split('.');
- String path;
- path.Join(elements, "/");
- path = buildPath_ + "/src/" + path;
- Poco::File dirs(path.CString());
- dirs.createDirectories();
- if (!dirs.exists())
- {
- errorText_ = "Unable to create ";
- return false;
- }
- String source;
- source.AppendWithFormat("package %s;\n", packageName.CString());
- source += "import org.libsdl.app.SDLActivity;\n";
- source += "public class AtomicGameEngine extends SDLActivity {\n";
- source += "}\n";
- File file(context_, path + "/AtomicGameEngine.java", FILE_WRITE);
- if (!file.IsOpen())
- return false;
- file.Write(source.CString(), source.Length());
- return true;
- }
- bool AndroidProjectGenerator::GenerateLocalProperties()
- {
- ToolEnvironment* tenv = GetSubsystem<ToolEnvironment>();
- ToolPrefs* prefs = tenv->GetToolPrefs();
- String sdkPath = prefs->GetAndroidSDKPath();
- if (!sdkPath.Length())
- {
- errorText_ = "Invalid Android SDK Path";
- return false;
- }
- String props;
- props.AppendWithFormat("sdk.dir=%s", sdkPath.CString());
- File file(context_, buildPath_ + "/local.properties", FILE_WRITE);
- if (!file.IsOpen())
- return false;
- file.Write(props.CString(), props.Length());
- return true;
- }
- bool AndroidProjectGenerator::GenerateProjectProperties()
- {
- ToolSystem* toolSystem = GetSubsystem<ToolSystem>();
- Project* project = toolSystem->GetProject();
- AndroidBuildSettings* settings = project->GetBuildSettings()->GetAndroidBuildSettings();
- String apiString = settings->GetSDKVersion();
- if (!apiString.Length())
- {
- errorText_ = "Invalid Android API";
- return false;
- }
- String props;
- props.AppendWithFormat("target=%s", apiString.CString());
- File file(context_, buildPath_ + "/project.properties", FILE_WRITE);
- if (!file.IsOpen())
- return false;
- file.Write(props.CString(), props.Length());
- return true;
- }
- bool AndroidProjectGenerator::GenerateStringXML()
- {
- ToolSystem* toolSystem = GetSubsystem<ToolSystem>();
- Project* project = toolSystem->GetProject();
- AndroidBuildSettings* settings = project->GetBuildSettings()->GetAndroidBuildSettings();
- String appName = settings->GetAppName();
- if (!appName.Length())
- {
- errorText_ = "Invalid App Name";
- return false;
- }
- String strings = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
- strings += "<resources>\n";
- strings.AppendWithFormat("<string name=\"app_name\">%s</string>\n", appName.CString());
- strings += "</resources>\n";
- File file(context_, buildPath_ + "/res/values/strings.xml", FILE_WRITE);
- if (!file.IsOpen())
- return false;
- file.Write(strings.CString(), strings.Length());
- return true;
- }
- bool AndroidProjectGenerator::GenerateAndroidManifest()
- {
- ToolSystem* toolSystem = GetSubsystem<ToolSystem>();
- Project* project = toolSystem->GetProject();
- AndroidBuildSettings* settings = project->GetBuildSettings()->GetAndroidBuildSettings();
- String package = settings->GetPackageName();
- if (!package.Length())
- {
- errorText_ = "Invalid Package Name";
- return false;
- }
- // TODO: from settings
- String activityName = "AtomicGameEngine";
- if (!activityName.Length())
- {
- errorText_ = "Invalid Activity Name";
- return false;
- }
- String manifest = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
- manifest += "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n";
- manifest.AppendWithFormat("package=\"%s\"\n", package.CString());
- manifest += "android:versionCode=\"1\"\n";
- manifest += "android:versionName=\"1.0\">\n";
- manifest += "<uses-permission android:name=\"android.permission.INTERNET\" />\n";
- manifest += "<uses-feature android:glEsVersion=\"0x00020000\" />\n";
- manifest += "<uses-sdk android:targetSdkVersion=\"12\" android:minSdkVersion=\"10\" />\n";
- manifest += "<application android:label=\"@string/app_name\" android:icon=\"@drawable/icon\">\n";
- manifest.AppendWithFormat("<activity android:name=\".%s\"\n", activityName.CString());
- manifest += "android:label=\"@string/app_name\"\n";
- manifest += "android:theme=\"@android:style/Theme.NoTitleBar.Fullscreen\"\n";
- manifest += "android:configChanges=\"keyboardHidden|orientation\"\n";
- manifest += "android:screenOrientation=\"landscape\">\n";
- manifest += "<intent-filter>\n";
- manifest += "<action android:name=\"android.intent.action.MAIN\" />\n";
- manifest += "<category android:name=\"android.intent.category.LAUNCHER\" />\n";
- manifest += "</intent-filter>\n";
- manifest += "</activity>\n";
- manifest += "</application>\n";
- manifest += "</manifest>\n";
- File file(context_, buildPath_ + "/AndroidManifest.xml", FILE_WRITE);
- if (!file.IsOpen())
- return false;
- file.Write(manifest.CString(), manifest.Length());
- return true;
- }
- }
- /*
- */
|