Questions tagged [marmalade]

Questions related to Marmalade, a cross platform SDK, earlier known as Airplay SDK, developed by Ideaworks Game Studio, and later by GMO, and later stopped.

Marmalade was a cross platform SDK, earlier known as Airplay SDK, developed by Ideaworks Game Studio, and later by GMO.

Important Info:

  1. Marmalade has shutdown its SDK services in March 2017 to focus on in-house games. Read more about this at their official post.

  2. Ownership of the Marmalade SDK has been transferred to GMO, who now have full responsibility for its development and distribution: http://marmalade.shop/en/

  3. At some point between September 2017 and July 2018, GMO decided to stop further investment to Marmalade SDK. (source)

Tutorials:

http://www.drmop.com/index.php/marmalade-sdk/marmalade-sdk-tutorials/

246 questions
0
votes
2 answers

Marmalade deployment to android: Icon and caption settings have no effect

I am working with Marmalade for mobile development, and want to define custom icons and of course a custom name (called "caption" in Marmalade) to be displayed on the phone when the application is deployed. I have read…
hansa
  • 139
  • 2
  • 13
0
votes
1 answer

Show cyrillic font using IwGxFontDrawText

I'm trying to show cyrillic's string in my Marmalade project, using IwGxFontDrawText function. I've added TimesNewRoman ttf file, and my code: int main() { // Initialise Iw2D Iw2DInit(); // Create the font that is used to display the…
daleijn
  • 718
  • 13
  • 22
0
votes
1 answer

Marmalade C++ Testing on iPhone 5 (iOS 7.1.2): Can`t get past splash screen in debug

so I have been working with Marmalade for a while now, and have now gone to testing. On android so far, I tested two example applications included in the SDK, called IwNUIBasicApplication, and IwNUIKitchenSink. I also tested a third simple…
hansa
  • 139
  • 2
  • 13
0
votes
1 answer

in Marmalade 7.3 iOS status bar shows up even when UIStatusBarHidden is set

Marmalade question after upgrading to marmalade 7.3 from 7.0 i noticed that the status bar is showing up on my screen even though i have set "UIStatusBarHidden" to true. Please note I do not want to use the statusbar EDK as I do not need to…
Anand
  • 4,182
  • 6
  • 42
  • 54
0
votes
1 answer

Python: getaddrinfo and gethostbyname do not return port numbers

I've embedded python 2.7.1 into a C++ based app (marmalade) running the example from: https://docs.python.org/2/library/socket.html input import socket socket.getaddrinfo("www.python.org", 80, 0, 0, socket.SOL_TCP) return [(2, 3, 3, '',…
flow
  • 571
  • 1
  • 4
  • 16
0
votes
1 answer

Orienting a sprite according to movement

I am developing a game using Cocos2d-X and Marmalade SDK. I have several objects in this game that move around on the screen using a Wander steering behavior, however I am having a lot of problems to orient these objects to face the movement…
Felipe
  • 6,312
  • 11
  • 52
  • 70
0
votes
0 answers

marmalade mkb send user defined parameter

I am using MKB to develop an app for ios and android. I need to send a user define parameter/symbol that I can conditionally set other stuff in the MKB. Currently only assets and deployments can be "platformized" by deployargs. but I would like to…
Anand
  • 4,182
  • 6
  • 42
  • 54
0
votes
1 answer

Embeded Python - [_socket gets module methods BUT socket.py: missing methods]

Python 2.7 embedded with Marmalade C++ middle ware I've embedded python 2.7 into my mobile program using Marmalade C++ middle ware (arm gcc). I can run most of the standard modules and 3rd party libraries. ( some source here:…
flow
  • 571
  • 1
  • 4
  • 16
0
votes
1 answer

C++ static archive library with multiple definition conflicts in debug

I'm writing a mobile app with c++ using marmalade middleware software, my plugin I'm making has a component that relies on a compiled python library. my application works with this 2.6 version: https://github.com/marmalade/python switched to 2.7…
flow
  • 571
  • 1
  • 4
  • 16
0
votes
1 answer

Cocos2D-X how to set line width while drawing

I am using Cocos2D-X 2.3 under Marmalade 7.3 and I am trying to draw a line on my screen. The code that I am using is below. void draw() { glLineWidth(10); ccDrawColor4B(0, 0, 0, 255); ccDrawLine(ccp(0, screenSize.height),…
Felipe
  • 6,312
  • 11
  • 52
  • 70
0
votes
1 answer

Handle japanese characters on C++ using Marmalade SDK

I'm just starting to create a localization system using marmalade SDK that will needs to handle a Japanese characters. I'm currently using VS2010 to compile the project, and in my project I'm just created the following lines in order to handle a…
ganoncl
  • 1
  • 3
0
votes
2 answers

Multitouch is not working on Marmalade + Cocos2d-X

I am using Marmalade to create a project using Cocos2d-X, however I am not being able to use Multitouch in my project. The idea would be to identify pinch gestures to zoom in and out. I've enabled touches in my GameLayer.cpp file…
Felipe
  • 6,312
  • 11
  • 52
  • 70
0
votes
1 answer

marmalade - Cannot find new API level symbols when building extension

This is a Marmalade based question I am building my android extension which is using symbols added in API level 16 and above. When building it I get the "cannot find Symbol" error for those new classes. How do i tell the MKB to take the set the new…
Anand
  • 4,182
  • 6
  • 42
  • 54
0
votes
1 answer

marmalade extension not working

I have made an android extension MessageBox. I have all the required files .mkb, .s4e, .so, .jar, .map. I have followed this YouTube tutorial. My extension is not working as Visual Studio is not getting connected with marmalade. Also project is…
0
votes
1 answer

Converting cocos2dx xcode project to Marmalade

Hey i have a project made in cocos2dx for iPhone/ipad. In that i have icluded flurry ,play Have,chartboost and other more apis. I have also used some native features of Objective C. Now i want to convert this project to Marmalade Project is it…