/*
 * JS Bindings: https://github.com/zynga/jsbindings
 *
 * Copyright (c) 2012 Zynga Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#ifndef __JS_BINDINGS_CORE_H__
#define __JS_BINDINGS_CORE_H__

#include "jsapi.h"
#include "jsfriendapi.h"
#include "cocos2d.h"
#include "chipmunk.h"
#include "SimpleAudioEngine.h"

// Globals
// one shared key for associations
extern char * JSB_association_proxy_key;

#ifdef __cplusplus
extern "C" {
#endif

	enum {
		JSB_C_FLAG_CALL_FREE = 0,
		JSB_C_FLAG_DO_NOT_CALL_FREE =1,
	};

	// structure used by "Object Oriented Functions".
	// handle is a pointer to the native object
	// flags: flags for the object
	struct jsb_c_proxy_s {
		unsigned long flags;	// Should it be removed at "destructor" time, or not ?
		void *handle;			// native object, like cpSpace, cpBody, etc.
		JSObject *jsobj;		// JS Object. Needed for rooting / unrooting
	};
	
	// Functions for setting / removing / getting the proxy used by the "C" Object Oriented API. Think of Chipmunk classes
	struct jsb_c_proxy_s* jsb_get_c_proxy_for_jsobject( JSObject *jsobj );
	void jsb_del_c_proxy_for_jsobject( JSObject *jsobj );
	void jsb_set_c_proxy_for_jsobject( JSObject *jsobj, void *handle, unsigned long flags);

	// JSObject -> proxy
	/** gets a proxy for a given JSObject */
	void* jsb_get_proxy_for_jsobject(JSObject *jsobj);
	/** sets a proxy for a given JSObject */
	void jsb_set_proxy_for_jsobject(void* proxy, JSObject *jsobj);
	/** dels a proxy for a given JSObject */
	void jsb_del_proxy_for_jsobject(JSObject *jsobj);

	// reverse: proxy -> JSObject
	/** gets a JSObject for a given proxy */
	JSObject* jsb_get_jsobject_for_proxy(void *proxy);
	/** sets a JSObject for a given proxy */
	void jsb_set_jsobject_for_proxy(JSObject *jsobj, void* proxy);
	/** delts a JSObject for a given proxy */
	void jsb_del_jsobject_for_proxy(void* proxy);
	
	
	// needed for callbacks. It does nothing.
	JSBool JSB_do_nothing(JSContext *cx, uint32_t argc, jsval *vp);
	

	// logs a format string to the console
	JSBool JSBCore_log(JSContext *cx, uint32_t argc, jsval *vp);

	extern const char* JSB_version;
#ifdef __cplusplus
}
#endif

#endif /* __JS_BINDINGS_CORE_H__ */