1

我现在已经尝试了 3 次来设置 eclipse 来运行 playn-sample 项目,但没有成功。我尝试了以下入门指南:

http://davies-barnard.co.uk/2012/03/playn/

http://code.google.com/p/playn/wiki/GettingStarted

http://www.gamefromscratch.com/post/2011/10/13/Getting-started-with-PlayN.aspx

当我开始遇到问题时,已经能够了解指南的导入部分。我已经清理了所有 JRE、JDK Eclipse 安装,并且目前安装了以下内容。

Java SE SDK 6u29

http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html#jdk-6u29-oth-JPR

安卓 SDK r18

http://developer.android.com/sdk/index.html

面向 Java EE 开发人员的 Eclipse IDE

http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/indigor

m2e - Eclipse v1.0.200.20111228-1245 的 Maven 集成

(来自所有可用的更新站点)

Eclipse 版本的 Android 插件。18.0.0.v201203301601-306762

https://dl-ssl.google.com/android/eclipse/

谷歌插件

http://dl.google.com/eclipse/plugin/3.7

WTP 版本的 Maven 集成。0.15.2.20120306-2040

http://download.jboss.org/jbosstools/updates/m2eclipse-wtp

当我尝试将 playn-samples 导入工作区时,我的体验开始偏离指南。我不断收到以下错误:

在 Eclipse 中找不到处理 android-maven-plugin:3.1.1:proguard 的市场条目。有关详细信息,请参阅帮助。

虽然我多年来一直在编程,但我的时间主要是在 Visual Studio 中,主要是 C#、ASP.NET,在过去的两年中,我学习了 jQuery/JavaScript。我在大学时用 Java 编写了一些程序,并认为 PlayN 框架是重返工作的一个很好的理由。我从这些指南中缺少什么来启动和运行?

4

1 回答 1

0

我和你有同样的问题。

由于我放弃了 eclipse,我尝试使用 Netbeans,现在我正在编程和测试这个库。

很快,这就是我所做的:

  1. 从这里获取 Netbeans+Java SE 组合: http ://www.oracle.com/technetwork/java/javase/downloads/jdk-netbeans-jsp-142931.html 并安装它
  2. 启动 Netbeans,转到File > New Project > Maven > Project from Archetype > Next
  3. 在下一个对话框中,按下添加按钮
  4. A new window will pop-up. Switch to your web browser
  5. Go to http://search.maven.org/ and in the search box type playN
  6. In the resulting list, look for playn-archetype in the ArtifactID column and click it
  7. Remember that last window on Netbeans? Return to the IDE and start filling the Group Id, Artifact Id and Version fields as they appear on the result list of playn-archetype. For example, the Group Id is com.googlecode.playn, Artifact Id is playn-archetype and the latest Version is 1.2 at this moment
  8. Leave the Repository field in blank and click Ok
  9. Now select your recently added archetype from the list and click Next
  10. 在以下对话框中,您可以留下字段或更改您想要的字段。但是,在Additional Creation Properties部分中,确保您在 JavaGameClassName字段中输入了一个值。这将是您的主类的名称,因此请确保填写它或单击完成后它会标记一个错误,您将不得不重新开始。
  11. 单击完成,Netbeans 将开始下载一堆东西,所以请耐心等待,直到完成。伟大的!现在您已经准备好运行 PlayN 的工作项目了。只需在 Project Navigator 中查找[your-project-name] Java文件夹,右键单击它并选择Run
  12. If a error related to android appears, you need to go to [your-project-name] Metaproject > Project Files and open the pom.xml file. Open it and in the modules section, comment or delete the <module>android</module> line, just for now to quiclky test your project.
  13. Remember, the Core folder is where you'll programm the game and the others are the launchers for each platform(Java, Android, iOS...)

Hope that helps :)

于 2012-05-14T07:07:24.847 回答