Tagged Questions
Alchemy is a research project from Adobe Systems that allows for the compilation of C and C++ code to AVM2 bytecode, so that it can be run on Flash Player or Adobe AIR. This is accomplished by an initial compilation to LLVM bytecode as an intermediate step.
3
votes
2answers
186 views
Flash/Flex Speex audio decode, to play a speex file
I want to play *.spx files which encoded by Speex on the Web.
But I have no knowledge of Flash/Flex or any Flash Audio codec. After Google search for a whole day, I got some solutions, that is:
Do ...
3
votes
1answer
269 views
libFLAC porting problem using Adobe Alchemy
I'm trying to port FLAC encoder using Adobe Alchemy for use in flash but can't figure out where the problem is.
I'm using Alchemy for Cygwin on Windows. It is properly installed and configured.
The ...
3
votes
3answers
455 views
How to pass ByteArray to C code in alchemy?
I want to pass a byte array object from flex code to C code.How to do that?
3
votes
1answer
122 views
globals broken with alchemy?
It seems that Adobe Alchemy isn't running global constructors. Here's some simple test code:
#include <stdio.h>
class TestClass {
public:
TestClass(const char message[]) {
...
3
votes
3answers
321 views
std::map broken in alchemy?
The following code tests the use of std::map with std::string as a key:
#include <stdio.h>
#include <map>
#include <string>
using namespace std;
typedef map<string, int> ...
3
votes
2answers
613 views
Why does the Adobe Alchemy Tool create faster running flash byte code than the flex compiler?
I have seen a few blog entries on this and have had a discussion or two with my team mates but I would like to see what the stack overflow community thinks.
So why does the Adobe Alchemy Tool create ...
3
votes
1answer
334 views
Anyone doing anything yet with Adobe's Project Alchemy?
Making another appearance this year at MAX was Alchemy, Adobe's C/C++-to-AVM2-bytecode compiler. It seems like really interesting stuff -- I haven't yet had time to really dig in and try it out ...
2
votes
0answers
371 views
Fast method to render thousands of bmp in Flash?
What's the fastest way to render a few dozen 16x16 bitmaps tens of thousand times at random locations on a 800x600 screen?
1) Use CopyPixel() to blit each sprite to the 800*600 screen buffer? Of ...
2
votes
1answer
87 views
“'main' arguments were dropped!” in alchemy
Why do I get this warning whenever I compile an alchemy swc?
WARNING: While resolving call to function 'main' arguments were dropped!
Is there any way to disable or fix the warning?
2
votes
2answers
336 views
Direct access of AS3 ByteArray memory in Alchemy, without AS3_ByteArray_readBytes?
I have an existing ByteArray in AS3 which I want to process (read and write) in Alchemy. All the examples I've seen of how to do this involve either using stream functions (fread, fwrite, etc), or ...
2
votes
1answer
356 views
Adobe Alchemy and Llvm 2.5
A comment on the Adobe Alchemy mailing list suggests it is possible to get Alchemy working with Llvm 2.7 (instead of 2.1 in the Alchemy download).
Does anyone know if this is true and if so any tips ...
2
votes
1answer
166 views
Alchemy's AS3_Shim broken?
I'm trying to use AS3_Shim in my alchemy code but it doesn't seem to be working. It always returns a NULL function pointer. There don't seem to be any examples of AS3_Shim's use, so I'm not sure ...
2
votes
1answer
295 views
crash when linking swc with Alchemy
I have a project I'm trying to compile with alchemy. It will compile .o and .a files, but when trying to create a .swc, it will fail. It appears to crash with this error:
g++ -swc -o mylib.swc ...
2
votes
1answer
640 views
How to convert AS3 ByteArray into wchar_t const* filename? (Adobe Alchemy)
How to convert AS3 ByteArray into wchar_t const* filename?
So in my C code I have a function waiting for a file with void fun (wchar_t const* filename) how to send to that function my ByteArray? (Or, ...
2
votes
3answers
819 views
Can you use Adobe's Alchemy to execute a batch file?
I was going to make an AIR application but I need to execute an external application and because of the security restrictions in Adobe AIR... I was thinking why not try and bypass it by writing some ...
1
vote
1answer
157 views
using STL with Alchemy
While Alchemy supports compiling C++, it seems that using the using the STL is trouble, mostly due to a problem with std::string. What's strange is that Alchemy seems to be using GNU libstd++ v3.4.6. ...
1
vote
1answer
170 views
Adobe Alchemy thread support
I've managed to compile (without errors) fluidsynth library that uses pthreads in old version and glib gthreads in newer version. However, in swf I get runtime errors Undefined sym: _pthread_attr_init ...
1
vote
1answer
122 views
re: how do you generate “l.bc” files?
I have been trying in vain for almost 2 weeks now to generate a "l.bc" files based on my very own library for building a swc with Alchemy.
i have tried doing (in both alc-on / alc-off modes)
ar ...
1
vote
2answers
92 views
Protect method calls in a swc residing in another swc
I have an alchemy compiled swc which contains methods to perform certain key algorithms. These methods should only return values only if user is authorized(bought license from online service) for ...
1
vote
2answers
240 views
is an alchemy C library faster/slower than an equivalent as3 library?
I've got a simple question. Suppose some simple lib written on c. Did I understood correctly that alchemy compiles it AS3 before compiling it to swf. If so, will the lib be slower or faster in ...
1
vote
2answers
894 views
Nape vs Box2d ( Actionscript 3 physics engines )
I've been testing performance of the Nape physics engine vs the Box2D AS3 and Alchemy ports and it seems like Nape is a lot slower than both of them. I have read in a few places( here and here ) that ...
1
vote
1answer
151 views
How do i get a reference to an alchemy asm declared variable into flash?
i have a variable declared in alchemy asm:
asm("var buffer:Vector.<Number> = new Vector.<Number>(100, true);");
i can populate it with data like so:
asm("buffer[%0] = %1;" : : ...
1
vote
3answers
394 views
return values from calling a function using lua alchemy
Im calling a function in lua from actionscript using
callstack : Array = luaAlchemyInstance.doString("luafunction");
my function should return some values
function luafunction()
return true, 125
...
1
vote
3answers
96 views
Is Alchemy Server sided or client sided?
i know that action script is client sided. But i am very confused when i am using alchemy. Is alchemy client sided or server sided?
1
vote
1answer
123 views
Populating a C array with from an AS3_Val
When receiving an array from flash, in C, how do I populate that array when its size isn't constant but the values types are?
In Alchemy's documentation, the example given is:
S3_ArrayValue(arr, ...
1
vote
1answer
236 views
Suggetions for overcoming a flash waveform performance problem
My question is sort of a follow on from this question below but I thought it'd be best to start a new question.
...
1
vote
1answer
280 views
Simple OpenGL implementatione
I work on port of some casual games to Flash.
They are based on OpenGL. Used OpenGL version is 1.x mostly. Game engine relies is 2D. It bases on OpenGL textures and simplest ...
1
vote
2answers
260 views
using 'ar' tool in Alchemy
I've found that if you specify a path to Alchemy's 'ar' tool, it won't create the 'l.bc' file necessary to link the library.
For example, here is the case when I don't specify a path (it works):
...
1
vote
0answers
337 views
Error #1006 value is not a function in C++ code compiled by Alchemy
I'm trying to port a big library to Alchemy. I've run into something that looks like an Alchemy bug. I have a class with a static member. There's a static function that uses it. Something like this:
...
1
vote
2answers
850 views
Flex Alchemy: Returning a ByteArray from C function
I am using Flex's Alchemy library to generate SWC's out of C files. I have a byte array (unsigned char buffer[size]) in the c-layer that I'd like to return to the ActionScript layer as a ByteArray. Do ...
0
votes
1answer
27 views
Using opencv in Flash Alchemy
I have a project that uses quite a few opencv libs to do some image processing tasks. Now I need to build a Flash app for it. I read that Alchemy allows compiling c++ libs for Flash. I wonder if ...
0
votes
1answer
87 views
using flashzlib into flash project
I am integrating flashzlib into one of my flash project. As mentioned in documentation of project. I have successfully generated libz.a and z.l.bc and pushed libs and headers in appropriate places.
...
0
votes
2answers
103 views
Creating AS3 code for C++ classes converted with Alchemy (a là Box2D)
So I've a collection of C++ classes which I now have converting fine with Alchemy to a swc file and can call the exposed functions fine from my AS3 code.
What I'd really like to do is recreate stuff ...
0
votes
0answers
99 views
Flash-opencv: memory fails in looped calls
I managed to compile and try some very basic OpenCV stuff with adobe alchemy (currently only matrix creation/addition, hope more to come).
Problem is: when you create a cv::Mat object once and/or do ...
0
votes
1answer
110 views
Weird Adobe Alchemy compiler fail
I'm trying to build a project using OpenCV with alchemy. My idea was to isolate the parts I need from OpenCV (v.2.2), compile them with alchemy g++ and link with my code statically. So here's what I ...
0
votes
1answer
40 views
Assertion failed: (LHSCst != RHSCst && “Compares not folded above?”)
I'm trying to compile ICU v4.8.1 with Alchemy, but am running into an LLVM problem:
Assertion failed: (LHSCst != RHSCst && "Compares not folded above?"), function visitAnd, file ...
0
votes
1answer
108 views
Adobe Alchemy returning C data structures
I have lexer/parser (Generated from an ANTLR grammar file) which (for performance reasons) I have compiled to C code which will be included into my actionscript project using Adobe Alchemly.
The ...
0
votes
1answer
554 views
How to compile ffmpeg via Alchemy gcc?
So I created ffmpeg configuration file that makes it pure C (platform independent, but only theoretically)
So my config is simple (0.6.1,0.6.3 tested):
./configure --disable-doc --disable-ffplay ...
0
votes
1answer
444 views
Convert Little-endian ByteArray to Big-endian in AS3
How to convert Little-endian ByteArray to Big-endian in AS3?
I convert bitmapData to Big-endian ByteArray and then push it into memory with Adobe Alchemy. And then when i read it from memory i get ...
0
votes
2answers
73 views
Adobe alchemy and dllimport
Is it possible to connect c++ dll to .c file (with dllimport or something else) and convert it to .swc with adobe alchemy? If it does - how to do that?
0
votes
2answers
135 views
Using Adobe Alchemy to get the OpenGL image from c++ code to flash app
I have C++ application that use OpenGL. Need to convert this app to flash app. Is it possible to do this with Adobe Alchemy? Is it will be possible to get from that swc current image (for example, ...
0
votes
1answer
96 views
How to display video in/with Adobe Alchemy?
I want to display a video from a not supported USB camera in Air (or Flash).
There is a SDK (of the camera) to display the video stream.
My question:
How should the C/C++ routine build to compile it ...
0
votes
0answers
124 views
re: how do you get turbojpeg.l.bc
I have installed what it needs to run my codes against libjpeg-turbo. However, when i treid to link that up in a modified gcc (which requires l.bc), it gives an error:
llvm-ld: error: Cannot find ...
0
votes
1answer
170 views
Flash Alchemy built .swc library too small and missing functions
I can modify and compile the SDK's stringecho.c example for AS3 use no problem.
For my own app, I compile with g++ a few dozen files successfully and link:
g++ -swc -o myApp.swc glue.o demo.o ...
0
votes
1answer
84 views
Does the adobe 'Alchemy' support the posix pthread library?
When I use pthread_create function create a thread in the c code, it fails.
But, the pthread.h in the avm2-lib directory is declared pthread_* functions.
I want to know whether the 'Alchemy' ...
0
votes
1answer
553 views
AS3 Alchemy byteArray float conversion from sound extract
I'm trying to do something simple:
send a byteArray to a C library, fill up a buffer and read the memory, but I think I have float conversion problems.
Here is what I do in AS:
var memory:ByteArray ...
0
votes
2answers
469 views
Compiling libJPEG with Alchemy (-swc)
I have tried for a few days to compile -swc with -ljpeg but have not had any luck.
Here is what i have been doing.
in my jpeg_sample_linker.c, it has two headers
#include "AS3.h"
#include ...
0
votes
3answers
2k views
Flash 2D engine to use to make a Flash Angry Birds clone (to run on mobile)
There are several different physics engines available for Flash. What would be one you'd recommend to build a catapult (with slingshot) Angry Birds clone -- that will run well on mobile, once packaged ...
0
votes
1answer
131 views
Alchemy C Code compilation
I am using alchemy to compile the C code.
This is the way I am compiling
gcc oggvorbis.c -O3 -Wall -swc
oggvorbis.swc -lvorbis
I am getting an error
llvm-gcc: oggvorbis.swc: No such file
or ...
0
votes
1answer
381 views
How to return byte array from alchemy C
I have written a alchemy code for reading the byte array that i have passed from flex.
When i print the value i get the error
cannot convert "OggS" to flash.utils.ByteArray
Alchemy Code
static ...