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
1 answer

Marmalade IwUIController causes crash when accessing IwUIElement objects

I created an app that works which is similar to the examples from the Marmalade SDK. Then I tried to move the IwUIController derived class in a separate files .h/.cpp to clean the code up a bit but I get a crash every time I try to access any…
Zingam
  • 4,498
  • 6
  • 28
  • 48
0
votes
3 answers

malloc memory for char array causes access violation

This is probably a noob question. I am using Marmalade SDK. If I allocate some memory for a char array dynamically I get an access violation. I cannot figure out what I am doing wrong. Is this a valid way to use malloc and free? const char*…
Zingam
  • 4,498
  • 6
  • 28
  • 48
0
votes
2 answers

Is there a way to make an array of rectangles?

I am using Marmalade Quick. I can draw a rectangle with: local myRectangle = director:createRectangle(x, y, width, height) Is there a way to store the myRectangle variable in an array for later use? Or how can I make multiple rectangles and have…
Nikmaster
  • 17
  • 4
0
votes
1 answer

Using EDK with framework

I am trying to implement Mopub in my game. Since Mopub gives their complete source code, I've to compile it into static library. The Static libraries are giving too much trouble while making the extension. And it always takes me 4-7 days for…
0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
0
votes
1 answer

Can Marmalade be used to build for the web? Not only web mobile apps?

What I mean is, can I use it to deploy to google chrome store, facebook or my own website?
Hate Names
  • 1,596
  • 1
  • 13
  • 20
0
votes
1 answer

I just started the most basic Marmalade c++ application with IwNUI and it is giving errors. What does this message mean?

This error message comes from the tutorial for setting up a native ui mobile application with marmalade + c++. error message: Message: Failed to open file iwui_style/iwui_style.group Here is the main file: #include "IwNUI.h" using namespace…
The Puma
  • 1,352
  • 2
  • 14
  • 27
0
votes
1 answer

Marmalade error download

i tried everything to solve this but since two days i'm blocked. i need IwNui Api in my application to build interface for my application iOs, but when adding this package to the mkb project with this line 'subproject IwNUI', Visual studio block on…
0
votes
1 answer

Post print dictionary/json returns error to client

I am sending post request in the body of some json data, to process on server and I want the results back to client(c++ app on phone) in the form of json data and hence parse on mobile. I have the following code inside handler: class…
PaolaJ.
  • 10,872
  • 22
  • 73
  • 111
0
votes
1 answer

Marmalade SDK Multitouch

I need help. I make game for blackberry playbook, but i have trouble with multitouch event handling. I use CInput class taken from examples for handling touch events, it work(all touch have right coords and touch count right too) but when make 2…
art65536
  • 1
  • 2
0
votes
1 answer

EXC_BAD_ACCESS issue after refactoring

The following code works in a the Marmalade simulator (I'm on OSX using x-code) bool PictureDictionary::OnTableSelect(CTable* table, int tab){ //if something is selected, look up the item, and display it //also change the search to the…
tandoan
  • 190
  • 1
  • 2
  • 11
0
votes
1 answer

marmalade sdk memory allocate karts tutorial

Here is an example taken from Marmalade sdk tutorial Kartz Game //Initialise the memory manager. MemoryManagerInit(); **{** CGame* game; **{** //create CGame object in 'Misc' memory bucket. CTempBucketSwitch b(MB_MISC); …
Sahka
  • 210
  • 3
  • 12
0
votes
2 answers

Why Marmalade has so strange naming?

I've read some tutorial about Marmalade Framework. You know... it's totally awesome :) For example: // Creating an Image from a Web Based Image File: CIwGameFile* image_file = new CIwGameFile(); image_file->Open( "http://site...../icon.gif", false,…
JavaRunner
  • 2,455
  • 5
  • 38
  • 52
0
votes
1 answer

Marmalade deploy - deployment.py, line 62, in SetOpt

I got a mac book pro retina and I'am trying to create a project from the .mkb file: but I got this error Building project: /Users/sergioandreotti/Downloads/twins/template/marmalade/FeedtheTwins.mkb Traceback (most recent call last): File…
Sergio Andreotti
  • 913
  • 2
  • 8
  • 26
0
votes
1 answer

Qt code port to marmalade

I know Marmalade is very good for c++ code porting but I would like to know how could it possible to port my Qt code to marmalade? Can anyone tell how simple "hello world" Qt-application could be ported to marmalade? I have setup every thing for…
0
votes
1 answer

Memory Access Violation on Box2d Marmalade

Just trying to set up box2d world on Marmalade project brings access violation : #include "s3e.h" #include "Iw2D.h" #include "game.h" #include "Box2D\Box2D.h" CGame::CGame() : m_Position(0,0) , m_Size(Iw2DGetSurfaceHeight() / 10,…
Delcasda
  • 371
  • 4
  • 13