Skip to content

barisyild/sfs3-api-haxe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

142 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub stars PRs Welcome GitHub release Ask DeepWiki

SFS3 API Haxe

SmartFoxServer 3 client API written in Haxe, cross-compiled to multiple targets.

Build

haxe build.hxml

Output

File Target
out/SFS3_API_PY.py Python
out/SFS3_API_AS3.swc ActionScript 3 (Flash/AIR)
out/SFS3_API_JS.js Browser JavaScript
out/SFS3_API_Node.js Node.js
out/SFS3_API_CPP/ C++ (hxcpp — native sources + output.exe stub)

C++ (hxcpp)

Requires hxcpp (haxelib install hxcpp) and a C++ toolchain (e.g. Visual Studio on Windows, clang++/g++ on macOS/Linux).

Public C API: cpp/include/SFS3_API.h + cpp/src/SFS3_API.cpp — a Loreline-style C wrapper with:

  • Lifecycle: SFS3_init/dispose/gc/update/registerThread (hxcpp GC management)
  • Opaque handles: SFS3_SmartFox*, SFS3_ConfigData*, SFS3_SFSObject*, SFS3_User*, SFS3_Room*
  • Type conversions: SFS3_String (ref-counted), SFS3_Value (tagged union)
  • Event callbacks: SFS3_addEventListener with C function pointers + userData
  • Requests: SFS3_sendLogin/Logout/JoinRoom/PublicMessage/ExtensionRequest/...
  • Data access: SFS3_SFSObject_putInt/getString/..., SFS3_SFSArray_add*/get*

See cpp/README.md for full usage example and compile/link instructions.

Protocol Support

Target TCP UDP WebSocket
Python YES NO YES
AS3 (Flash/AIR) YES YES YES
Browser JS NO NO YES
Node.js YES YES YES
C++ (hxcpp) YES YES YES

Flash/AIR (SWC + mxmlc)

When linking SFS3_API_AS3.swc with mxmlc, use -include-libraries+=... (not -library-path).
-library-path only pulls symbols reachable from your main class; the Haxe runtime and SFS3 API use indirect references, so many SWC types would be missing at runtime.

See sample/as3/SimpleChat/build.bat.

Sample

out/SimpleChat.py — Tkinter chat client for testing against a SmartFoxServer 3 instance.

pip install -r sample/python/requirements.txt
python out/SimpleChat.py

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors