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

Blasting black circle in space invader

I'm trying to clone space invader, collision with the green barriers. https://www.youtube.com/watch?v=bLAhmnCZym4 Right now I have access to the pixels of the green barrier I would like to draw a solid black circle around the collision point of the…
0
votes
1 answer

Marmalade SDK: is there a way to skip/seek to a part of a video in s3e video play?

I am currently using s3eVideo in the Marmalade SDK to play a video in my project after a button event. I attempted to find a way to implement a slider bar (or something of the like) to go back and forth in the video. I am unsure if this feature is…
user3745472
  • 231
  • 1
  • 2
  • 10
0
votes
1 answer

Marmalade: change screen orientation when video is playing

In my project (using the Marmalade SDK), I have fixed the screen orientation to portrait in the .icf file. When a user touches a button, a video plays (using s3e video). However, This video is also played in portrait mode (which is not conducive to…
user3745472
  • 231
  • 1
  • 2
  • 10
0
votes
1 answer

Collision Detection using 2D Rect

I would like to add a Rect to IW2D so that I can do collision detection between two images. I created a struct Rect(x,y,width,height) I'm rendering using the following code: Transform.SetRot(Angle); Transform.ScaleRot(Scale); …
andre
  • 141
  • 1
  • 1
  • 9
0
votes
1 answer

Marmalade corrupts textures when deployed to Android

I'm currently writing an application for Android using Marmalade. I must say that I find the .mkb syntax highly annoying, regardless of that, Marmalade seems to be corrupting my textures, but only when I add the files to my .mkb file. With the…
Ruben Rutten
  • 1,659
  • 2
  • 15
  • 30
0
votes
0 answers

GCC 4.9.2 OpenMP and Neon

I am having some trouble understanding my current situation due to the fact that I spend most of my time coding x86 software. Apple have released a new requirement that apps must support 64 bit architecture from february 2015. From what I understand…
Kachinsky
  • 573
  • 1
  • 7
  • 20
0
votes
1 answer

Error building Marmalade

I'm trying to build Marmalade example. The Marmalade Hub is giving me the following error: Current Build: GCC ARM Debug (Not Found) The Dependency Checker has only one error: Android Signing Certificates Not Found
Michael
  • 3,206
  • 5
  • 26
  • 44
0
votes
0 answers

android distribution filter based on processor or RAM

I'm developing a new game, which has 2 sets of images (Low-resolution and hi-res). I planned to use low-resolution images in devices with small RAM and/or low processing power. I've taken care of scaling and tested it on XPeria ARC with…
sravan
  • 138
  • 1
  • 10
0
votes
1 answer

Marmalade. Read string from UTF-8 encoded text file and draw it with IwGxFont

Now I use only drawing like this char str[10]; strcpy(str, "str"); CIwGxFontPreparedData data; data.Clear(); IwGxFontPrepareText(data, str); IwGxFontSetRect(CIwRect(10, 10, Iw2DGetSurfaceWidth(), Iw2DGetSurfaceWidth())); …
Ivan
  • 11
  • 3
0
votes
1 answer

marmalade GCC ARC build

Can some one help me with this error! it seems like marmalade cant find the pilist. Current Build: GCC ARM Release (Tue Nov 25 12:49:05 2014) ERROR: exception occured in s3e_deploy Traceback (most recent call last): File…
0
votes
1 answer

CIwArray push_back throws error

I am trying a contact list kinda app and want to hold this data in a dynamic array. CIwArray was the choice of mine since I've used that before. However it's working strange now, probably due to Marmalade 7.4.2 since I've just updated. My…
0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
0
votes
1 answer

ld: file not found: /usr/lib/libextension.dylib

ld: file not found: /usr/lib/libextension.dylib Can some one help me to find this file. I can`t work without it. Its is used to make a .ipa when deploying marmalade project.
0
votes
1 answer

s3eSocket Marmalade cannot create socket

Hi I am new to Marmalade and C++, but I know programming. I have searched almost everywhere on the web for an answer to this, but it might just be because I don't quite know C++ yet. OK. I am writing a chat program which works with a PHP server and…
instanceof
  • 1,404
  • 23
  • 30
0
votes
1 answer

Ios cross compilation frameworks: do they violate the Ios SDK license?

Some cross compilation frameworks like Adobe Air, Marmalade sdk, Trigger.io and Embarcadero allow one to build test and debug applications from a windows machine. Do they violate the iOS SDK license agreement? This agrement forbids to distribute…
register
  • 399
  • 4
  • 14
0
votes
1 answer

OpenGL 2.0 fragment shader not working with Cocos2d-X

I am developing a game using Cocos2d-X 2.2.3 and Marmalade SDK 7.4 and I have created a fragment shader to desaturate some of my sprites, or in other words to remove all color from them and show them only in shades of gray (black and white). The…
Felipe
  • 6,312
  • 11
  • 52
  • 70