├── .gitignore ├── README.md ├── libs ├── cocos-headers │ ├── cocos2dx │ │ ├── CCCamera.h │ │ ├── CCConfiguration.h │ │ ├── CCDirector.h │ │ ├── CCScheduler.h │ │ ├── actions │ │ │ ├── CCAction.h │ │ │ ├── CCActionCamera.h │ │ │ ├── CCActionCatmullRom.h │ │ │ ├── CCActionEase.h │ │ │ ├── CCActionGrid.h │ │ │ ├── CCActionGrid3D.h │ │ │ ├── CCActionInstant.h │ │ │ ├── CCActionInterval.h │ │ │ ├── CCActionManager.h │ │ │ ├── CCActionPageTurn3D.h │ │ │ ├── CCActionProgressTimer.h │ │ │ ├── CCActionTiledGrid.h │ │ │ └── CCActionTween.h │ │ ├── base_nodes │ │ │ ├── CCAtlasNode.h │ │ │ ├── CCGLBufferedNode.h │ │ │ └── CCNode.h │ │ ├── ccFPSImages.h │ │ ├── cocoa │ │ │ ├── CCAffineTransform.h │ │ │ ├── CCArray.h │ │ │ ├── CCAutoreleasePool.h │ │ │ ├── CCBool.h │ │ │ ├── CCDataVisitor.h │ │ │ ├── CCDictionary.h │ │ │ ├── CCDouble.h │ │ │ ├── CCFloat.h │ │ │ ├── CCGeometry.h │ │ │ ├── CCInteger.h │ │ │ ├── CCNS.h │ │ │ ├── CCObject.h │ │ │ ├── CCSet.h │ │ │ ├── CCString.h │ │ │ └── CCZone.h │ │ ├── draw_nodes │ │ │ ├── CCDrawNode.h │ │ │ └── CCDrawingPrimitives.h │ │ ├── effects │ │ │ ├── CCGrabber.h │ │ │ └── CCGrid.h │ │ ├── include │ │ │ ├── CCEventType.h │ │ │ ├── CCProtocols.h │ │ │ ├── ccConfig.h │ │ │ ├── ccMacros.h │ │ │ ├── ccTypeInfo.h │ │ │ ├── ccTypes.h │ │ │ └── cocos2d.h │ │ ├── kazmath │ │ │ └── include │ │ │ │ └── kazmath │ │ │ │ ├── GL │ │ │ │ ├── mat4stack.h │ │ │ │ └── matrix.h │ │ │ │ ├── aabb.h │ │ │ │ ├── kazmath.h │ │ │ │ ├── mat3.h │ │ │ │ ├── mat4.h │ │ │ │ ├── neon_matrix_impl.h │ │ │ │ ├── plane.h │ │ │ │ ├── quaternion.h │ │ │ │ ├── ray2.h │ │ │ │ ├── utility.h │ │ │ │ ├── vec2.h │ │ │ │ ├── vec3.h │ │ │ │ └── vec4.h │ │ ├── keypad_dispatcher │ │ │ ├── CCKeypadDelegate.h │ │ │ └── CCKeypadDispatcher.h │ │ ├── label_nodes │ │ │ ├── CCLabelAtlas.h │ │ │ ├── CCLabelBMFont.h │ │ │ └── CCLabelTTF.h │ │ ├── layers_scenes_transitions_nodes │ │ │ ├── CCLayer.h │ │ │ ├── CCScene.h │ │ │ ├── CCTransition.h │ │ │ ├── CCTransitionPageTurn.h │ │ │ └── CCTransitionProgress.h │ │ ├── libcocos2d.lib │ │ ├── menu_nodes │ │ │ ├── CCMenu.h │ │ │ └── CCMenuItem.h │ │ ├── misc_nodes │ │ │ ├── CCClippingNode.h │ │ │ ├── CCMotionStreak.h │ │ │ ├── CCProgressTimer.h │ │ │ └── CCRenderTexture.h │ │ ├── particle_nodes │ │ │ ├── CCParticleBatchNode.h │ │ │ ├── CCParticleExamples.h │ │ │ ├── CCParticleSystem.h │ │ │ ├── CCParticleSystemQuad.h │ │ │ └── firePngData.h │ │ ├── platform │ │ │ ├── CCAccelerometerDelegate.h │ │ │ ├── CCApplicationProtocol.h │ │ │ ├── CCCommon.h │ │ │ ├── CCDevice.h │ │ │ ├── CCEGLViewProtocol.h │ │ │ ├── CCFileUtils.h │ │ │ ├── CCImage.h │ │ │ ├── CCImageCommon_cpp.h │ │ │ ├── CCPlatformConfig.h │ │ │ ├── CCPlatformMacros.h │ │ │ ├── CCSAXParser.h │ │ │ ├── CCThread.h │ │ │ ├── platform.h │ │ │ ├── third_party │ │ │ │ ├── android │ │ │ │ │ └── prebuilt │ │ │ │ │ │ ├── libcurl │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── curl │ │ │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ │ └── libcurl.a.REMOVED.git-id │ │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ │ └── libcurl.a.REMOVED.git-id │ │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── libcurl.a.REMOVED.git-id │ │ │ │ │ │ ├── libjpeg │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ │ └── jpeglib.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ │ └── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ │ └── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ ├── libpng │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ │ ├── pngconf.h │ │ │ │ │ │ │ └── pngusr.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ │ └── libpng.a.REMOVED.git-id │ │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ │ └── libpng.a.REMOVED.git-id │ │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── libpng.a.REMOVED.git-id │ │ │ │ │ │ ├── libtiff │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ └── tiffvers.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ │ └── libtiff.a.REMOVED.git-id │ │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ │ └── libtiff.a.REMOVED.git-id │ │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── libtiff.a.REMOVED.git-id │ │ │ │ │ │ └── libwebp │ │ │ │ │ │ ├── include │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ │ └── x86 │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ ├── blackberry │ │ │ │ │ ├── include │ │ │ │ │ │ ├── libtiff │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ └── tiffvers.h │ │ │ │ │ │ └── libwebp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ └── libraries │ │ │ │ │ │ ├── armle-v7 │ │ │ │ │ │ ├── libtiff.a.REMOVED.git-id │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── libtiff.a.REMOVED.git-id │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ ├── emscripten │ │ │ │ │ ├── libjpeg │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ └── jpeglib.h │ │ │ │ │ ├── libpng │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ └── pngconf.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ ├── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ ├── libpng.a.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.a.REMOVED.git-id │ │ │ │ │ │ ├── libtiffxx.a.REMOVED.git-id │ │ │ │ │ │ ├── libwebp.a.REMOVED.git-id │ │ │ │ │ │ ├── libxml2.a.REMOVED.git-id │ │ │ │ │ │ └── libz.a.REMOVED.git-id │ │ │ │ │ ├── libtiff │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ ├── tiffio.hxx │ │ │ │ │ │ │ └── tiffvers.h │ │ │ │ │ ├── libwebp │ │ │ │ │ │ └── webp │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── libxml2 │ │ │ │ │ │ └── libxml │ │ │ │ │ │ │ ├── DOCBparser.h │ │ │ │ │ │ │ ├── HTMLparser.h │ │ │ │ │ │ │ ├── HTMLtree.h │ │ │ │ │ │ │ ├── SAX.h │ │ │ │ │ │ │ ├── SAX2.h │ │ │ │ │ │ │ ├── c14n.h │ │ │ │ │ │ │ ├── catalog.h │ │ │ │ │ │ │ ├── chvalid.h │ │ │ │ │ │ │ ├── debugXML.h │ │ │ │ │ │ │ ├── dict.h │ │ │ │ │ │ │ ├── encoding.h │ │ │ │ │ │ │ ├── entities.h │ │ │ │ │ │ │ ├── globals.h │ │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ │ ├── list.h │ │ │ │ │ │ │ ├── nanoftp.h │ │ │ │ │ │ │ ├── nanohttp.h │ │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ │ ├── parserInternals.h │ │ │ │ │ │ │ ├── pattern.h │ │ │ │ │ │ │ ├── relaxng.h │ │ │ │ │ │ │ ├── schemasInternals.h │ │ │ │ │ │ │ ├── schematron.h │ │ │ │ │ │ │ ├── threads.h │ │ │ │ │ │ │ ├── tree.h │ │ │ │ │ │ │ ├── uri.h │ │ │ │ │ │ │ ├── valid.h │ │ │ │ │ │ │ ├── xinclude.h │ │ │ │ │ │ │ ├── xlink.h │ │ │ │ │ │ │ ├── xmlIO.h │ │ │ │ │ │ │ ├── xmlautomata.h │ │ │ │ │ │ │ ├── xmlerror.h │ │ │ │ │ │ │ ├── xmlexports.h │ │ │ │ │ │ │ ├── xmlmemory.h │ │ │ │ │ │ │ ├── xmlmodule.h │ │ │ │ │ │ │ ├── xmlreader.h │ │ │ │ │ │ │ ├── xmlregexp.h │ │ │ │ │ │ │ ├── xmlsave.h │ │ │ │ │ │ │ ├── xmlschemas.h │ │ │ │ │ │ │ ├── xmlschemastypes.h │ │ │ │ │ │ │ ├── xmlstring.h │ │ │ │ │ │ │ ├── xmlunicode.h │ │ │ │ │ │ │ ├── xmlversion.h │ │ │ │ │ │ │ ├── xmlwriter.h │ │ │ │ │ │ │ ├── xpath.h │ │ │ │ │ │ │ ├── xpathInternals.h │ │ │ │ │ │ │ └── xpointer.h │ │ │ │ │ └── libz │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ └── zlib.h │ │ │ │ ├── ios │ │ │ │ │ ├── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ └── typecheck-gcc.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── libcurl.a.REMOVED.git-id │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ ├── linux │ │ │ │ │ ├── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ └── typecheck-gcc.h │ │ │ │ │ ├── include64 │ │ │ │ │ │ └── curl │ │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ │ └── stdcheaders.h │ │ │ │ │ ├── libfreetype2 │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ ├── libjpeg │ │ │ │ │ │ ├── cderror.h │ │ │ │ │ │ ├── cdjpeg.h │ │ │ │ │ │ ├── jchuff.h │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ ├── jdct.h │ │ │ │ │ │ ├── jdhuff.h │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ ├── jinclude.h │ │ │ │ │ │ ├── jmemsys.h │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ ├── jpegint.h │ │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ │ ├── jversion.h │ │ │ │ │ │ └── transupp.h │ │ │ │ │ ├── libpng │ │ │ │ │ │ ├── PngFile.h │ │ │ │ │ │ ├── cexcept.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ ├── pngconf.h │ │ │ │ │ │ ├── pngpriv.h │ │ │ │ │ │ ├── readpng.h │ │ │ │ │ │ ├── readpng2.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ └── writepng.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── lib64 │ │ │ │ │ │ │ ├── libcurl.a.REMOVED.git-id │ │ │ │ │ │ │ ├── libfreetype.a.REMOVED.git-id │ │ │ │ │ │ │ ├── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ │ ├── libpng.a.REMOVED.git-id │ │ │ │ │ │ │ ├── libtiff.a.REMOVED.git-id │ │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ │ ├── libcurl.a.REMOVED.git-id │ │ │ │ │ │ ├── libfreetype.a.REMOVED.git-id │ │ │ │ │ │ ├── libjpeg.a.REMOVED.git-id │ │ │ │ │ │ ├── libpng.a.REMOVED.git-id │ │ │ │ │ │ ├── libpng15.a.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.a.REMOVED.git-id │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ ├── libtiff │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── t4.h │ │ │ │ │ │ │ ├── tif_config.h │ │ │ │ │ │ │ ├── tif_config.vc.h │ │ │ │ │ │ │ ├── tif_config.wince.h │ │ │ │ │ │ │ ├── tif_dir.h │ │ │ │ │ │ │ ├── tif_fax3.h │ │ │ │ │ │ │ ├── tif_predict.h │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffconf.vc.h │ │ │ │ │ │ │ ├── tiffconf.wince.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ ├── tiffiop.h │ │ │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ │ │ └── uvcode.h │ │ │ │ │ └── libwebp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ ├── mac │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ ├── marmalade │ │ │ │ │ ├── freetype.mkf │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ │ │ ├── pcftypes.h │ │ │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── autofit │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── afangles.h │ │ │ │ │ │ │ ├── afcjk.h │ │ │ │ │ │ │ ├── afdummy.h │ │ │ │ │ │ │ ├── aferrors.h │ │ │ │ │ │ │ ├── afglobal.h │ │ │ │ │ │ │ ├── afhints.h │ │ │ │ │ │ │ ├── afindic.h │ │ │ │ │ │ │ ├── aflatin.h │ │ │ │ │ │ │ ├── aflatin2.h │ │ │ │ │ │ │ ├── afloader.h │ │ │ │ │ │ │ ├── afmodule.h │ │ │ │ │ │ │ ├── afpic.h │ │ │ │ │ │ │ ├── aftypes.h │ │ │ │ │ │ │ └── afwarp.h │ │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── basepic.h │ │ │ │ │ │ │ ├── ftbase.h │ │ │ │ │ │ │ └── ftobjs.c.REMOVED.git-id │ │ │ │ │ │ │ ├── bdf │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── bdf.h │ │ │ │ │ │ │ ├── bdfdrivr.h │ │ │ │ │ │ │ └── bdferror.h │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── ftccache.h │ │ │ │ │ │ │ ├── ftccback.h │ │ │ │ │ │ │ ├── ftcerror.h │ │ │ │ │ │ │ ├── ftcglyph.h │ │ │ │ │ │ │ ├── ftcimage.h │ │ │ │ │ │ │ ├── ftcmanag.h │ │ │ │ │ │ │ ├── ftcmru.h │ │ │ │ │ │ │ └── ftcsbits.h │ │ │ │ │ │ │ ├── cff │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── cffcmap.h │ │ │ │ │ │ │ ├── cffdrivr.h │ │ │ │ │ │ │ ├── cfferrs.h │ │ │ │ │ │ │ ├── cffgload.h │ │ │ │ │ │ │ ├── cffload.h │ │ │ │ │ │ │ ├── cffobjs.h │ │ │ │ │ │ │ ├── cffparse.h │ │ │ │ │ │ │ ├── cffpic.h │ │ │ │ │ │ │ ├── cfftoken.h │ │ │ │ │ │ │ └── cfftypes.h │ │ │ │ │ │ │ ├── cid │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── ciderrs.h │ │ │ │ │ │ │ ├── cidgload.h │ │ │ │ │ │ │ ├── cidload.h │ │ │ │ │ │ │ ├── cidobjs.h │ │ │ │ │ │ │ ├── cidparse.h │ │ │ │ │ │ │ ├── cidriver.h │ │ │ │ │ │ │ └── cidtoken.h │ │ │ │ │ │ │ ├── gxvalid │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── gxvalid.h │ │ │ │ │ │ │ ├── gxvcommn.h │ │ │ │ │ │ │ ├── gxverror.h │ │ │ │ │ │ │ ├── gxvfeat.h │ │ │ │ │ │ │ ├── gxvmod.h │ │ │ │ │ │ │ ├── gxvmort.h │ │ │ │ │ │ │ └── gxvmorx.h │ │ │ │ │ │ │ ├── gzip │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── infblock.h │ │ │ │ │ │ │ ├── infcodes.h │ │ │ │ │ │ │ ├── inffixed.h │ │ │ │ │ │ │ ├── inftrees.h │ │ │ │ │ │ │ ├── infutil.h │ │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ │ ├── zlib.h │ │ │ │ │ │ │ └── zutil.h │ │ │ │ │ │ │ ├── lzw │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ └── ftzopen.h │ │ │ │ │ │ │ ├── otvalid │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── otvalid.h │ │ │ │ │ │ │ ├── otvcommn.h │ │ │ │ │ │ │ ├── otverror.h │ │ │ │ │ │ │ ├── otvgpos.h │ │ │ │ │ │ │ └── otvmod.h │ │ │ │ │ │ │ ├── pcf │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── pcf.h │ │ │ │ │ │ │ ├── pcfdrivr.h │ │ │ │ │ │ │ ├── pcferror.h │ │ │ │ │ │ │ ├── pcfread.h │ │ │ │ │ │ │ └── pcfutil.h │ │ │ │ │ │ │ ├── pfr │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── pfrcmap.h │ │ │ │ │ │ │ ├── pfrdrivr.h │ │ │ │ │ │ │ ├── pfrerror.h │ │ │ │ │ │ │ ├── pfrgload.h │ │ │ │ │ │ │ ├── pfrload.h │ │ │ │ │ │ │ ├── pfrobjs.h │ │ │ │ │ │ │ ├── pfrsbit.h │ │ │ │ │ │ │ └── pfrtypes.h │ │ │ │ │ │ │ ├── psaux │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── afmparse.h │ │ │ │ │ │ │ ├── psauxerr.h │ │ │ │ │ │ │ ├── psauxmod.h │ │ │ │ │ │ │ ├── psconv.h │ │ │ │ │ │ │ ├── psobjs.h │ │ │ │ │ │ │ ├── t1cmap.h │ │ │ │ │ │ │ └── t1decode.h │ │ │ │ │ │ │ ├── pshinter │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── pshalgo.h │ │ │ │ │ │ │ ├── pshglob.h │ │ │ │ │ │ │ ├── pshmod.h │ │ │ │ │ │ │ ├── pshnterr.h │ │ │ │ │ │ │ ├── pshpic.h │ │ │ │ │ │ │ └── pshrec.h │ │ │ │ │ │ │ ├── psnames │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── psmodule.h │ │ │ │ │ │ │ ├── psnamerr.h │ │ │ │ │ │ │ ├── pspic.h │ │ │ │ │ │ │ └── pstables.h.REMOVED.git-id │ │ │ │ │ │ │ ├── raster │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── ftmisc.h │ │ │ │ │ │ │ ├── ftraster.c.REMOVED.git-id │ │ │ │ │ │ │ ├── ftraster.h │ │ │ │ │ │ │ ├── ftrend1.h │ │ │ │ │ │ │ ├── rasterrs.h │ │ │ │ │ │ │ └── rastpic.h │ │ │ │ │ │ │ ├── sfnt │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── sfdriver.h │ │ │ │ │ │ │ ├── sferrors.h │ │ │ │ │ │ │ ├── sfntpic.h │ │ │ │ │ │ │ ├── sfobjs.h │ │ │ │ │ │ │ ├── ttbdf.h │ │ │ │ │ │ │ ├── ttcmap.c.REMOVED.git-id │ │ │ │ │ │ │ ├── ttcmap.h │ │ │ │ │ │ │ ├── ttcmapc.h │ │ │ │ │ │ │ ├── ttkern.h │ │ │ │ │ │ │ ├── ttload.h │ │ │ │ │ │ │ ├── ttmtx.h │ │ │ │ │ │ │ ├── ttpost.h │ │ │ │ │ │ │ └── ttsbit.h │ │ │ │ │ │ │ ├── smooth │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── ftgrays.h │ │ │ │ │ │ │ ├── ftsmerrs.h │ │ │ │ │ │ │ ├── ftsmooth.h │ │ │ │ │ │ │ └── ftspic.h │ │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── chktrcmp.py │ │ │ │ │ │ │ ├── cordic.py │ │ │ │ │ │ │ ├── docmaker │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── content.py │ │ │ │ │ │ │ │ ├── docbeauty.py │ │ │ │ │ │ │ │ ├── docmaker.py │ │ │ │ │ │ │ │ ├── formatter.py │ │ │ │ │ │ │ │ ├── sources.py │ │ │ │ │ │ │ │ ├── tohtml.py │ │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ │ ├── ftrandom │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ └── glnames.py.REMOVED.git-id │ │ │ │ │ │ │ ├── truetype │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── ttdriver.h │ │ │ │ │ │ │ ├── tterrors.h │ │ │ │ │ │ │ ├── ttgload.h │ │ │ │ │ │ │ ├── ttgxvar.h │ │ │ │ │ │ │ ├── ttinterp.c.REMOVED.git-id │ │ │ │ │ │ │ ├── ttinterp.h │ │ │ │ │ │ │ ├── ttobjs.h │ │ │ │ │ │ │ ├── ttpic.h │ │ │ │ │ │ │ └── ttpload.h │ │ │ │ │ │ │ ├── type1 │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── t1afm.h │ │ │ │ │ │ │ ├── t1driver.h │ │ │ │ │ │ │ ├── t1errors.h │ │ │ │ │ │ │ ├── t1gload.h │ │ │ │ │ │ │ ├── t1load.h │ │ │ │ │ │ │ ├── t1objs.h │ │ │ │ │ │ │ ├── t1parse.h │ │ │ │ │ │ │ └── t1tokens.h │ │ │ │ │ │ │ ├── type42 │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── t42drivr.h │ │ │ │ │ │ │ ├── t42error.h │ │ │ │ │ │ │ ├── t42objs.h │ │ │ │ │ │ │ ├── t42parse.h │ │ │ │ │ │ │ └── t42types.h │ │ │ │ │ │ │ └── winfonts │ │ │ │ │ │ │ ├── Jamfile │ │ │ │ │ │ │ ├── fnterrs.h │ │ │ │ │ │ │ └── winfnt.h │ │ │ │ │ ├── libtiff.mkf │ │ │ │ │ ├── libtiff │ │ │ │ │ │ ├── headers │ │ │ │ │ │ │ ├── t4.h │ │ │ │ │ │ │ ├── tif_config.h │ │ │ │ │ │ │ ├── tif_dir.h │ │ │ │ │ │ │ ├── tif_fax3.h │ │ │ │ │ │ │ ├── tif_predict.h │ │ │ │ │ │ │ ├── tif_stream.cxx │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ ├── tiffio.hxx │ │ │ │ │ │ │ ├── tiffiop.h │ │ │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ │ │ └── uvcode.h │ │ │ │ │ │ └── source │ │ │ │ │ │ │ ├── tif_dirread.c.REMOVED.git-id │ │ │ │ │ │ │ └── tif_fax3sm.c.REMOVED.git-id │ │ │ │ │ ├── libwebp.mkf │ │ │ │ │ └── libwebp │ │ │ │ │ │ ├── dec │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── decode_vp8.h │ │ │ │ │ │ ├── vp8i.h │ │ │ │ │ │ ├── vp8li.h │ │ │ │ │ │ └── webpi.h │ │ │ │ │ │ ├── dsp │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── dsp.h │ │ │ │ │ │ ├── lossless.h │ │ │ │ │ │ └── yuv.h │ │ │ │ │ │ ├── enc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── backward_references.h │ │ │ │ │ │ ├── cost.h │ │ │ │ │ │ ├── histogram.h │ │ │ │ │ │ ├── vp8enci.h │ │ │ │ │ │ └── vp8li.h │ │ │ │ │ │ ├── mux │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── muxi.h │ │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── bit_reader.h │ │ │ │ │ │ ├── bit_writer.h │ │ │ │ │ │ ├── color_cache.h │ │ │ │ │ │ ├── filters.h │ │ │ │ │ │ ├── huffman.h │ │ │ │ │ │ ├── huffman_encode.h │ │ │ │ │ │ ├── quant_levels.h │ │ │ │ │ │ ├── rescaler.h │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ └── utils.h │ │ │ │ │ │ └── webp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ ├── format_constants.h │ │ │ │ │ │ ├── mux.h │ │ │ │ │ │ └── types.h │ │ │ │ ├── tizen │ │ │ │ │ ├── prebuilt │ │ │ │ │ │ └── libwebp │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ ├── armv7l │ │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── libwebp.a.REMOVED.git-id │ │ │ │ │ └── rootstraps │ │ │ │ │ │ ├── tizen-device-2.2.native │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── libexpat.so.1.5.2 │ │ │ │ │ │ │ ├── libexpat.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libz.so.1.2.5 │ │ │ │ │ │ │ └── libz.so.REMOVED.git-id │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── curl │ │ │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ │ │ └── typecheck-gcc.h │ │ │ │ │ │ │ ├── fontconfig │ │ │ │ │ │ │ │ ├── fcfreetype.h │ │ │ │ │ │ │ │ ├── fcprivate.h │ │ │ │ │ │ │ │ └── fontconfig.h │ │ │ │ │ │ │ ├── freetype2 │ │ │ │ │ │ │ │ └── freetype │ │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ ├── ftconfig-32.h │ │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ │ ├── ft2build.h │ │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ │ ├── pngconf.h │ │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ │ ├── tiffio.hxx │ │ │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ │ └── zlib.h │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── libcares.so.2.0.0 │ │ │ │ │ │ │ ├── libcrypto.so.1.0.0 │ │ │ │ │ │ │ ├── libcrypto.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libcurl.so.4.3.0 │ │ │ │ │ │ │ ├── libcurl.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libfontconfig.so.1.5.0 │ │ │ │ │ │ │ ├── libfontconfig.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libfreetype.so.6.8.1 │ │ │ │ │ │ │ ├── libfreetype.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libidn.so.11.5.44 │ │ │ │ │ │ │ ├── libidn.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libjpeg.so.8.0.2 │ │ │ │ │ │ │ ├── libjpeg.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libpng.so.3.50.0 │ │ │ │ │ │ │ ├── libpng.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libssl.so.1.0.0 │ │ │ │ │ │ │ ├── libssl.so.REMOVED.git-id │ │ │ │ │ │ │ ├── libtiff.so.5.1.0 │ │ │ │ │ │ │ └── libtiff.so.REMOVED.git-id │ │ │ │ │ │ └── tizen-emulator-2.2.native │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── libexpat.so.1.5.2 │ │ │ │ │ │ ├── libexpat.so.REMOVED.git-id │ │ │ │ │ │ ├── libz.so.1.2.5 │ │ │ │ │ │ └── libz.so.REMOVED.git-id │ │ │ │ │ │ └── usr │ │ │ │ │ │ ├── include │ │ │ │ │ │ ├── curl │ │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ ├── fontconfig │ │ │ │ │ │ │ ├── fcfreetype.h │ │ │ │ │ │ │ ├── fcprivate.h │ │ │ │ │ │ │ └── fontconfig.h │ │ │ │ │ │ ├── freetype2 │ │ │ │ │ │ │ └── freetype │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ftconfig-32.h │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ ├── ft2build.h │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ ├── pngconf.h │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ ├── tiffio.hxx │ │ │ │ │ │ ├── tiffvers.h │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ └── zlib.h │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── libcares.so.2.0.0 │ │ │ │ │ │ ├── libcrypto.so.1.0.0 │ │ │ │ │ │ ├── libcrypto.so.REMOVED.git-id │ │ │ │ │ │ ├── libcurl.so.4.3.0 │ │ │ │ │ │ ├── libcurl.so.REMOVED.git-id │ │ │ │ │ │ ├── libfontconfig.so.1.5.0 │ │ │ │ │ │ ├── libfontconfig.so.REMOVED.git-id │ │ │ │ │ │ ├── libfreetype.so.6.8.1 │ │ │ │ │ │ ├── libfreetype.so.REMOVED.git-id │ │ │ │ │ │ ├── libidn.so.11.5.44 │ │ │ │ │ │ ├── libidn.so.REMOVED.git-id │ │ │ │ │ │ ├── libjpeg.so.8.0.2 │ │ │ │ │ │ ├── libjpeg.so.REMOVED.git-id │ │ │ │ │ │ ├── libpng.so.3.50.0 │ │ │ │ │ │ ├── libpng.so.REMOVED.git-id │ │ │ │ │ │ ├── libssl.so.1.0.0 │ │ │ │ │ │ ├── libssl.so.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.so.5.1.0 │ │ │ │ │ │ └── libtiff.so.REMOVED.git-id │ │ │ │ ├── win32 │ │ │ │ │ ├── OGLES │ │ │ │ │ │ └── GL │ │ │ │ │ │ │ ├── glew.h │ │ │ │ │ │ │ ├── glxew.h │ │ │ │ │ │ │ └── wglew.h │ │ │ │ │ ├── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ └── typecheck-gcc.h │ │ │ │ │ ├── iconv │ │ │ │ │ │ └── iconv.h │ │ │ │ │ ├── libjpeg │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ ├── jconfig_linux.h │ │ │ │ │ │ ├── jconfig_win.h │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ └── jpeglib.h │ │ │ │ │ ├── libpng │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ └── pngconf.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── glew32.dll.REMOVED.git-id │ │ │ │ │ │ ├── glew32.lib.REMOVED.git-id │ │ │ │ │ │ ├── iconv.dll.REMOVED.git-id │ │ │ │ │ │ ├── libcurl.dll.REMOVED.git-id │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.dll.REMOVED.git-id │ │ │ │ │ │ └── libwebp.lib.REMOVED.git-id │ │ │ │ │ ├── libtiff │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ └── tiffvers.h │ │ │ │ │ ├── libwebp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── pthread │ │ │ │ │ │ ├── pthread.h │ │ │ │ │ │ ├── sched.h │ │ │ │ │ │ └── semaphore.h │ │ │ │ │ └── zlib │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ └── zlib.h │ │ │ │ ├── winrt │ │ │ │ │ ├── freetype │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ │ ├── proj.winrt │ │ │ │ │ │ │ ├── freetype.sln │ │ │ │ │ │ │ ├── freetype.vcxproj │ │ │ │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ │ │ │ ├── freetype_2013.sln │ │ │ │ │ │ │ ├── freetype_2013.vcxproj │ │ │ │ │ │ │ └── freetype_2013.vcxproj.filters │ │ │ │ │ │ └── proj.wp8 │ │ │ │ │ │ │ ├── freetype.sln │ │ │ │ │ │ │ ├── freetype.vcxproj │ │ │ │ │ │ │ └── freetype.vcxproj.filters │ │ │ │ │ ├── libjpeg │ │ │ │ │ │ ├── jconfig.h │ │ │ │ │ │ ├── jconfig_linux.h │ │ │ │ │ │ ├── jconfig_win.h │ │ │ │ │ │ ├── jerror.h │ │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ │ ├── libjpeg.sln │ │ │ │ │ │ ├── libjpeg.vcxproj │ │ │ │ │ │ ├── libjpeg.vcxproj.filters │ │ │ │ │ │ ├── libjpeg_2013.sln │ │ │ │ │ │ ├── libjpeg_2013.vcxproj │ │ │ │ │ │ └── libjpeg_2013.vcxproj.filters │ │ │ │ │ ├── libpng │ │ │ │ │ │ ├── libpng.sln │ │ │ │ │ │ ├── libpng.vcxproj │ │ │ │ │ │ ├── libpng.vcxproj.filters │ │ │ │ │ │ ├── libpng_2013.sln │ │ │ │ │ │ ├── libpng_2013.vcxproj │ │ │ │ │ │ ├── libpng_2013.vcxproj.filters │ │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ │ └── pngconf.h │ │ │ │ │ ├── libraries │ │ │ │ │ │ ├── vs2012 │ │ │ │ │ │ │ ├── ARM │ │ │ │ │ │ │ │ ├── D3Dcompiler_46.dll.REMOVED.git-id │ │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ └── Win32 │ │ │ │ │ │ │ │ ├── D3Dcompiler_46.dll.REMOVED.git-id │ │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ └── vs2013 │ │ │ │ │ │ │ ├── ARM │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ └── Win32 │ │ │ │ │ │ │ ├── Debug │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── freetype.pri │ │ │ │ │ │ │ ├── libjpeg.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libjpeg.pri │ │ │ │ │ │ │ ├── libpng.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libpng.pri │ │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ │ ├── libtiff.pri │ │ │ │ │ │ │ ├── zlib.lib.REMOVED.git-id │ │ │ │ │ │ │ └── zlib.pri │ │ │ │ │ ├── libtiff │ │ │ │ │ │ ├── libtiff.sln │ │ │ │ │ │ ├── libtiff.vcxproj │ │ │ │ │ │ ├── libtiff.vcxproj.filters │ │ │ │ │ │ ├── libtiff_2013.sln │ │ │ │ │ │ ├── libtiff_2013.vcxproj │ │ │ │ │ │ ├── libtiff_2013.vcxproj.filters │ │ │ │ │ │ ├── tif_config.h │ │ │ │ │ │ ├── tiff.h │ │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ │ ├── tiffio.h │ │ │ │ │ │ └── tiffvers.h │ │ │ │ │ ├── libwebp │ │ │ │ │ │ ├── decode.h │ │ │ │ │ │ ├── encode.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── third_party_libs_2012 │ │ │ │ │ │ └── third_party_libs_2012.sln │ │ │ │ │ ├── third_party_libs_2013 │ │ │ │ │ │ └── third_party_libs_2013.sln │ │ │ │ │ └── zlib │ │ │ │ │ │ ├── zconf.h │ │ │ │ │ │ ├── zlib.h │ │ │ │ │ │ ├── zlib.sln │ │ │ │ │ │ ├── zlib.vcxproj │ │ │ │ │ │ ├── zlib.vcxproj.filters │ │ │ │ │ │ ├── zlib_2013.sln │ │ │ │ │ │ ├── zlib_2013.vcxproj │ │ │ │ │ │ └── zlib_2013.vcxproj.filters │ │ │ │ └── wp8 │ │ │ │ │ ├── freetype │ │ │ │ │ ├── include │ │ │ │ │ │ ├── freetype │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ │ ├── freetype.h.REMOVED.git-id │ │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ │ └── ttunpat.h │ │ │ │ │ │ └── ft2build.h │ │ │ │ │ └── proj.wp8 │ │ │ │ │ │ ├── freetype.sln │ │ │ │ │ │ ├── freetype.vcxproj │ │ │ │ │ │ └── freetype.vcxproj.filters │ │ │ │ │ ├── libcurl │ │ │ │ │ ├── curl │ │ │ │ │ │ ├── curl.h │ │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ │ ├── curlrules.h │ │ │ │ │ │ ├── curlver.h │ │ │ │ │ │ ├── easy.h │ │ │ │ │ │ ├── mprintf.h │ │ │ │ │ │ ├── multi.h │ │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ │ └── typecheck-gcc.h │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── amigaos.h │ │ │ │ │ │ ├── arpa_telnet.h │ │ │ │ │ │ ├── asyn.h │ │ │ │ │ │ ├── axtls.h │ │ │ │ │ │ ├── bundles.h │ │ │ │ │ │ ├── config-amigaos.h │ │ │ │ │ │ ├── config-dos.h │ │ │ │ │ │ ├── config-mac.h │ │ │ │ │ │ ├── config-os400.h │ │ │ │ │ │ ├── config-riscos.h │ │ │ │ │ │ ├── config-symbian.h │ │ │ │ │ │ ├── config-tpf.h │ │ │ │ │ │ ├── config-vxworks.h │ │ │ │ │ │ ├── config-win32.h │ │ │ │ │ │ ├── config-win32ce.h │ │ │ │ │ │ ├── conncache.h │ │ │ │ │ │ ├── connect.h │ │ │ │ │ │ ├── content_encoding.h │ │ │ │ │ │ ├── cookie.h │ │ │ │ │ │ ├── curl_addrinfo.h │ │ │ │ │ │ ├── curl_base64.h │ │ │ │ │ │ ├── curl_config.h.in │ │ │ │ │ │ ├── curl_darwinssl.h │ │ │ │ │ │ ├── curl_fnmatch.h │ │ │ │ │ │ ├── curl_gethostname.h │ │ │ │ │ │ ├── curl_gssapi.h │ │ │ │ │ │ ├── curl_hmac.h │ │ │ │ │ │ ├── curl_ldap.h │ │ │ │ │ │ ├── curl_md4.h │ │ │ │ │ │ ├── curl_md5.h │ │ │ │ │ │ ├── curl_memory.h │ │ │ │ │ │ ├── curl_memrchr.h │ │ │ │ │ │ ├── curl_multibyte.h │ │ │ │ │ │ ├── curl_ntlm.h │ │ │ │ │ │ ├── curl_ntlm_core.h │ │ │ │ │ │ ├── curl_ntlm_msgs.h │ │ │ │ │ │ ├── curl_ntlm_wb.h │ │ │ │ │ │ ├── curl_rtmp.h │ │ │ │ │ │ ├── curl_sasl.h │ │ │ │ │ │ ├── curl_schannel.h │ │ │ │ │ │ ├── curl_sec.h │ │ │ │ │ │ ├── curl_setup.h │ │ │ │ │ │ ├── curl_setup_once.h │ │ │ │ │ │ ├── curl_sspi.h │ │ │ │ │ │ ├── curl_threads.h │ │ │ │ │ │ ├── curlx.h │ │ │ │ │ │ ├── cyassl.h │ │ │ │ │ │ ├── dict.h │ │ │ │ │ │ ├── dotdot.h │ │ │ │ │ │ ├── easyif.h │ │ │ │ │ │ ├── escape.h │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── fileinfo.h │ │ │ │ │ │ ├── formdata.h │ │ │ │ │ │ ├── ftp.c.REMOVED.git-id │ │ │ │ │ │ ├── ftp.h │ │ │ │ │ │ ├── ftplistparser.h │ │ │ │ │ │ ├── getinfo.h │ │ │ │ │ │ ├── gopher.h │ │ │ │ │ │ ├── gskit.h │ │ │ │ │ │ ├── gtls.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hostcheck.h │ │ │ │ │ │ ├── hostip.h │ │ │ │ │ │ ├── http.c.REMOVED.git-id │ │ │ │ │ │ ├── http.h │ │ │ │ │ │ ├── http2.h │ │ │ │ │ │ ├── http_chunks.h │ │ │ │ │ │ ├── http_digest.h │ │ │ │ │ │ ├── http_negotiate.h │ │ │ │ │ │ ├── http_proxy.h │ │ │ │ │ │ ├── if2ip.h │ │ │ │ │ │ ├── imap.h │ │ │ │ │ │ ├── inet_ntop.h │ │ │ │ │ │ ├── inet_pton.h │ │ │ │ │ │ ├── llist.h │ │ │ │ │ │ ├── memdebug.h │ │ │ │ │ │ ├── multihandle.h │ │ │ │ │ │ ├── multiif.h │ │ │ │ │ │ ├── netrc.h │ │ │ │ │ │ ├── non-ascii.h │ │ │ │ │ │ ├── nonblock.h │ │ │ │ │ │ ├── nssg.h │ │ │ │ │ │ ├── parsedate.h │ │ │ │ │ │ ├── pingpong.h │ │ │ │ │ │ ├── pipeline.h │ │ │ │ │ │ ├── polarssl.h │ │ │ │ │ │ ├── polarssl_threadlock.h │ │ │ │ │ │ ├── pop3.h │ │ │ │ │ │ ├── progress.h │ │ │ │ │ │ ├── qssl.h │ │ │ │ │ │ ├── rawstr.h │ │ │ │ │ │ ├── rtsp.h │ │ │ │ │ │ ├── select.h │ │ │ │ │ │ ├── sendf.h │ │ │ │ │ │ ├── setup-os400.h │ │ │ │ │ │ ├── setup-vms.h │ │ │ │ │ │ ├── share.h │ │ │ │ │ │ ├── sigpipe.h │ │ │ │ │ │ ├── slist.h │ │ │ │ │ │ ├── smtp.h │ │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ │ ├── socks.h │ │ │ │ │ │ ├── speedcheck.h │ │ │ │ │ │ ├── splay.h │ │ │ │ │ │ ├── ssh.c.REMOVED.git-id │ │ │ │ │ │ ├── ssh.h │ │ │ │ │ │ ├── sslgen.h │ │ │ │ │ │ ├── ssluse.h │ │ │ │ │ │ ├── strdup.h │ │ │ │ │ │ ├── strequal.h │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ ├── strtok.h │ │ │ │ │ │ ├── strtoofft.h │ │ │ │ │ │ ├── telnet.h │ │ │ │ │ │ ├── tftp.h │ │ │ │ │ │ ├── timeval.h │ │ │ │ │ │ ├── transfer.h │ │ │ │ │ │ ├── url.c.REMOVED.git-id │ │ │ │ │ │ ├── url.h │ │ │ │ │ │ ├── urldata.h │ │ │ │ │ │ ├── warnless.h │ │ │ │ │ │ ├── wildcard.h │ │ │ │ │ │ └── x509asn1.h │ │ │ │ │ ├── libcurl.h │ │ │ │ │ ├── libcurl.vcxproj │ │ │ │ │ └── libcurl.vcxproj.filters │ │ │ │ │ ├── libjpeg │ │ │ │ │ ├── jconfig.h │ │ │ │ │ ├── jconfig_linux.h │ │ │ │ │ ├── jconfig_win.h │ │ │ │ │ ├── jerror.h │ │ │ │ │ ├── jmorecfg.h │ │ │ │ │ ├── jpeglib.h │ │ │ │ │ ├── libjpeg.sln │ │ │ │ │ ├── libjpeg.vcxproj │ │ │ │ │ └── libjpeg.vcxproj.filters │ │ │ │ │ ├── libpng │ │ │ │ │ ├── libpng.sln │ │ │ │ │ ├── libpng.vcxproj │ │ │ │ │ ├── libpng.vcxproj.filters │ │ │ │ │ ├── png.h.REMOVED.git-id │ │ │ │ │ └── pngconf.h │ │ │ │ │ ├── libraries │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── LibJPEG.lib.REMOVED.git-id │ │ │ │ │ │ ├── LibPNG.lib.REMOVED.git-id │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ └── zlib.lib.REMOVED.git-id │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── LibJPEG.lib.REMOVED.git-id │ │ │ │ │ │ ├── LibPNG.lib.REMOVED.git-id │ │ │ │ │ │ ├── freetype.lib.REMOVED.git-id │ │ │ │ │ │ ├── libtiff.lib.REMOVED.git-id │ │ │ │ │ │ └── zlib.lib.REMOVED.git-id │ │ │ │ │ ├── libtiff │ │ │ │ │ ├── libtiff.sln │ │ │ │ │ ├── libtiff.vcxproj │ │ │ │ │ ├── libtiff.vcxproj.filters │ │ │ │ │ ├── tif_config.h │ │ │ │ │ ├── tiff.h │ │ │ │ │ ├── tiffconf.h │ │ │ │ │ ├── tiffio.h │ │ │ │ │ └── tiffvers.h │ │ │ │ │ ├── libwebp │ │ │ │ │ ├── decode.h │ │ │ │ │ ├── encode.h │ │ │ │ │ └── types.h │ │ │ │ │ ├── third_party_libs_2012 │ │ │ │ │ └── third_party_libs_2012.sln │ │ │ │ │ ├── third_party_libs_2013 │ │ │ │ │ └── third_party_libs_2013.sln │ │ │ │ │ └── zlib │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zlib.h │ │ │ │ │ ├── zlib.sln │ │ │ │ │ ├── zlib.vcxproj │ │ │ │ │ └── zlib.vcxproj.filters │ │ │ ├── win32 │ │ │ │ ├── CCAccelerometer.h │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCEGLView.h │ │ │ │ ├── CCFileUtilsWin32.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCStdC.h │ │ │ │ └── compat │ │ │ │ │ └── stdint.h │ │ │ └── winrt │ │ │ │ ├── CCAccelerometer.h │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCEGLView.h │ │ │ │ ├── CCFileUtilsWinRT.h │ │ │ │ ├── CCFreeTypeFont.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCGL_Angle.h │ │ │ │ ├── CCGL_gl2dx.h │ │ │ │ ├── CCPThreadWinRT.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCPrecompiledShaders.h │ │ │ │ ├── CCStdC.h │ │ │ │ ├── CCWinRTUtils.h │ │ │ │ ├── DirectXBase.h │ │ │ │ ├── DirectXHelper.h │ │ │ │ ├── compat │ │ │ │ └── stdint.h │ │ │ │ └── sha1.h │ │ ├── robtop │ │ │ ├── glfw │ │ │ │ ├── glfw3.h │ │ │ │ ├── glfw3.lib │ │ │ │ └── glfw3native.h │ │ │ ├── keyboard_dispatcher │ │ │ │ ├── CCKeyboardDelegate.h │ │ │ │ └── CCKeyboardDispatcher.h │ │ │ ├── mouse_dispatcher │ │ │ │ ├── CCMouseDelegate.h │ │ │ │ └── CCMouseDispatcher.h │ │ │ ├── scene_nodes │ │ │ │ └── CCSceneTransitionDelegate.h │ │ │ └── xml │ │ │ │ ├── DS_Dictionary.h │ │ │ │ ├── pugiconfig.hpp │ │ │ │ ├── pugixml.hpp │ │ │ │ └── readme.txt │ │ ├── script_support │ │ │ └── CCScriptSupport.h │ │ ├── shaders │ │ │ ├── CCGLProgram.h │ │ │ ├── CCShaderCache.h │ │ │ ├── ccGLStateCache.h │ │ │ ├── ccShaderEx_SwitchMask_frag.h │ │ │ ├── ccShader_PositionColorLengthTexture_frag.h │ │ │ ├── ccShader_PositionColorLengthTexture_vert.h │ │ │ ├── ccShader_PositionColor_frag.h │ │ │ ├── ccShader_PositionColor_vert.h │ │ │ ├── ccShader_PositionTextureA8Color_frag.h │ │ │ ├── ccShader_PositionTextureA8Color_vert.h │ │ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h │ │ │ ├── ccShader_PositionTextureColor_frag.h │ │ │ ├── ccShader_PositionTextureColor_vert.h │ │ │ ├── ccShader_PositionTexture_frag.h │ │ │ ├── ccShader_PositionTexture_uColor_frag.h │ │ │ ├── ccShader_PositionTexture_uColor_vert.h │ │ │ ├── ccShader_PositionTexture_vert.h │ │ │ ├── ccShader_Position_uColor_frag.h │ │ │ ├── ccShader_Position_uColor_vert.h │ │ │ └── ccShaders.h │ │ ├── sprite_nodes │ │ │ ├── CCAnimation.h │ │ │ ├── CCAnimationCache.h │ │ │ ├── CCSprite.h │ │ │ ├── CCSpriteBatchNode.h │ │ │ ├── CCSpriteFrame.h │ │ │ └── CCSpriteFrameCache.h │ │ ├── support │ │ │ ├── CCNotificationCenter.h │ │ │ ├── CCPointExtension.h │ │ │ ├── CCProfiling.h │ │ │ ├── CCVertex.h │ │ │ ├── TransformUtils.h │ │ │ ├── base64.h │ │ │ ├── ccUTF8.h │ │ │ ├── ccUtils.h │ │ │ ├── component │ │ │ │ ├── CCComponent.h │ │ │ │ └── CCComponentContainer.h │ │ │ ├── data_support │ │ │ │ ├── ccCArray.h │ │ │ │ ├── uthash.h │ │ │ │ └── utlist.h │ │ │ ├── image_support │ │ │ │ └── TGAlib.h │ │ │ ├── tinyxml2 │ │ │ │ └── tinyxml2.h │ │ │ ├── user_default │ │ │ │ └── CCUserDefault.h │ │ │ └── zip_support │ │ │ │ ├── ZipUtils.h │ │ │ │ ├── ioapi.h │ │ │ │ └── unzip.h │ │ ├── text_input_node │ │ │ ├── CCIMEDelegate.h │ │ │ ├── CCIMEDispatcher.h │ │ │ └── CCTextFieldTTF.h │ │ ├── textures │ │ │ ├── CCTexture2D.h │ │ │ ├── CCTextureAtlas.h │ │ │ ├── CCTextureCache.h │ │ │ ├── CCTextureETC.h │ │ │ └── CCTexturePVR.h │ │ ├── tilemap_parallax_nodes │ │ │ ├── CCParallaxNode.h │ │ │ ├── CCTMXLayer.h │ │ │ ├── CCTMXObjectGroup.h │ │ │ ├── CCTMXTiledMap.h │ │ │ ├── CCTMXXMLParser.h │ │ │ └── CCTileMapAtlas.h │ │ └── touch_dispatcher │ │ │ ├── CCTouch.h │ │ │ ├── CCTouchDelegateProtocol.h │ │ │ ├── CCTouchDispatcher.h │ │ │ └── CCTouchHandler.h │ ├── extensions │ │ ├── AssetsManager │ │ │ └── AssetsManager.h │ │ ├── CCBReader │ │ │ ├── CCBAnimationManager.h │ │ │ ├── CCBFileLoader.h │ │ │ ├── CCBKeyframe.h │ │ │ ├── CCBMemberVariableAssigner.h │ │ │ ├── CCBReader.h │ │ │ ├── CCBSelectorResolver.h │ │ │ ├── CCBSequence.h │ │ │ ├── CCBSequenceProperty.h │ │ │ ├── CCBValue.h │ │ │ ├── CCControlButtonLoader.h │ │ │ ├── CCControlLoader.h │ │ │ ├── CCData.h │ │ │ ├── CCLabelBMFontLoader.h │ │ │ ├── CCLabelTTFLoader.h │ │ │ ├── CCLayerColorLoader.h │ │ │ ├── CCLayerGradientLoader.h │ │ │ ├── CCLayerLoader.h │ │ │ ├── CCMenuItemImageLoader.h │ │ │ ├── CCMenuItemLoader.h │ │ │ ├── CCMenuLoader.h │ │ │ ├── CCNode+CCBRelativePositioning.h │ │ │ ├── CCNodeLoader.h │ │ │ ├── CCNodeLoaderLibrary.h │ │ │ ├── CCNodeLoaderListener.h │ │ │ ├── CCParticleSystemQuadLoader.h │ │ │ ├── CCScale9SpriteLoader.h │ │ │ ├── CCScrollViewLoader.h │ │ │ └── CCSpriteLoader.h │ │ ├── CocoStudio │ │ │ ├── Action │ │ │ │ ├── CCActionEaseEx.h │ │ │ │ ├── CCActionFrame.h │ │ │ │ ├── CCActionFrameEasing.h │ │ │ │ ├── CCActionManager.h │ │ │ │ ├── CCActionNode.h │ │ │ │ └── CCActionObject.h │ │ │ ├── Armature │ │ │ │ ├── CCArmature.h │ │ │ │ ├── CCBone.h │ │ │ │ ├── animation │ │ │ │ │ ├── CCArmatureAnimation.h │ │ │ │ │ ├── CCProcessBase.h │ │ │ │ │ └── CCTween.h │ │ │ │ ├── datas │ │ │ │ │ └── CCDatas.h │ │ │ │ ├── display │ │ │ │ │ ├── CCBatchNode.h │ │ │ │ │ ├── CCDecorativeDisplay.h │ │ │ │ │ ├── CCDisplayFactory.h │ │ │ │ │ ├── CCDisplayManager.h │ │ │ │ │ └── CCSkin.h │ │ │ │ ├── external_tool │ │ │ │ │ └── sigslot.h │ │ │ │ ├── physics │ │ │ │ │ └── CCColliderDetector.h │ │ │ │ └── utils │ │ │ │ │ ├── CCArmatureDataManager.h │ │ │ │ │ ├── CCArmatureDefine.h │ │ │ │ │ ├── CCDataReaderHelper.h │ │ │ │ │ ├── CCSpriteFrameCacheHelper.h │ │ │ │ │ ├── CCTransformHelp.h │ │ │ │ │ ├── CCTweenFunction.h │ │ │ │ │ └── CCUtilMath.h │ │ │ ├── Components │ │ │ │ ├── CCComAttribute.h │ │ │ │ ├── CCComAudio.h │ │ │ │ ├── CCComBase.h │ │ │ │ ├── CCComController.h │ │ │ │ ├── CCComRender.h │ │ │ │ └── CCInputDelegate.h │ │ │ ├── GUI │ │ │ │ ├── BaseClasses │ │ │ │ │ └── UIWidget.h │ │ │ │ ├── Layouts │ │ │ │ │ ├── UILayout.h │ │ │ │ │ ├── UILayoutDefine.h │ │ │ │ │ └── UILayoutParameter.h │ │ │ │ ├── System │ │ │ │ │ ├── CocosGUI.h │ │ │ │ │ ├── GUIDefine.h │ │ │ │ │ ├── UIHelper.h │ │ │ │ │ └── UITouchGroup.h │ │ │ │ └── UIWidgets │ │ │ │ │ ├── Compatible │ │ │ │ │ └── CompatibleClasses.h │ │ │ │ │ ├── ScrollWidget │ │ │ │ │ ├── UIListView.h │ │ │ │ │ ├── UIPageView.h │ │ │ │ │ ├── UIScrollInterface.h │ │ │ │ │ └── UIScrollView.h │ │ │ │ │ ├── UIButton.h │ │ │ │ │ ├── UICheckBox.h │ │ │ │ │ ├── UIImageView.h │ │ │ │ │ ├── UILabel.h │ │ │ │ │ ├── UILabelAtlas.h │ │ │ │ │ ├── UILabelBMFont.h │ │ │ │ │ ├── UILoadingBar.h │ │ │ │ │ ├── UIRichText.h │ │ │ │ │ ├── UISlider.h │ │ │ │ │ └── UITextField.h │ │ │ ├── Json │ │ │ │ ├── DictionaryHelper.h │ │ │ │ └── rapidjson │ │ │ │ │ ├── document.h │ │ │ │ │ ├── filestream.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── stack.h │ │ │ │ │ └── strfunc.h │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ └── writer.h │ │ │ ├── Reader │ │ │ │ ├── GUIReader.h │ │ │ │ ├── SceneReader.h │ │ │ │ └── WidgetReader │ │ │ │ │ ├── ButtonReader │ │ │ │ │ └── ButtonReader.h │ │ │ │ │ ├── CheckBoxReader │ │ │ │ │ └── CheckBoxReader.h │ │ │ │ │ ├── ImageViewReader │ │ │ │ │ └── ImageViewReader.h │ │ │ │ │ ├── LabelAtlasReader │ │ │ │ │ └── LabelAtlasReader.h │ │ │ │ │ ├── LabelBMFontReader │ │ │ │ │ └── LabelBMFontReader.h │ │ │ │ │ ├── LabelReader │ │ │ │ │ └── LabelReader.h │ │ │ │ │ ├── LayoutReader │ │ │ │ │ └── LayoutReader.h │ │ │ │ │ ├── ListViewReader │ │ │ │ │ └── ListViewReader.h │ │ │ │ │ ├── LoadingBarReader │ │ │ │ │ └── LoadingBarReader.h │ │ │ │ │ ├── PageViewReader │ │ │ │ │ └── PageViewReader.h │ │ │ │ │ ├── ScrollViewReader │ │ │ │ │ └── ScrollViewReader.h │ │ │ │ │ ├── SliderReader │ │ │ │ │ └── SliderReader.h │ │ │ │ │ ├── TextFieldReader │ │ │ │ │ └── TextFieldReader.h │ │ │ │ │ ├── WidgetReader.h │ │ │ │ │ └── WidgetReaderProtocol.h │ │ │ └── Trigger │ │ │ │ ├── ObjectFactory.h │ │ │ │ ├── TriggerBase.h │ │ │ │ ├── TriggerMng.h │ │ │ │ └── TriggerObj.h │ │ ├── ExtensionMacros.h │ │ ├── GUI │ │ │ ├── CCControlExtension │ │ │ │ ├── CCControl.h │ │ │ │ ├── CCControlButton.h │ │ │ │ ├── CCControlColourPicker.h │ │ │ │ ├── CCControlExtensions.h │ │ │ │ ├── CCControlHuePicker.h │ │ │ │ ├── CCControlPotentiometer.h │ │ │ │ ├── CCControlSaturationBrightnessPicker.h │ │ │ │ ├── CCControlSlider.h │ │ │ │ ├── CCControlStepper.h │ │ │ │ ├── CCControlSwitch.h │ │ │ │ ├── CCControlUtils.h │ │ │ │ ├── CCInvocation.h │ │ │ │ ├── CCScale9Sprite.h │ │ │ │ └── ColorPickerDelegate.h │ │ │ ├── CCEditBox │ │ │ │ ├── CCEditBox.h │ │ │ │ ├── CCEditBoxImpl.h │ │ │ │ ├── CCEditBoxImplAndroid.h │ │ │ │ ├── CCEditBoxImplIOS.h │ │ │ │ ├── CCEditBoxImplMac.h │ │ │ │ ├── CCEditBoxImplTizen.h │ │ │ │ ├── CCEditBoxImplWin.h │ │ │ │ └── CCEditBoxImplWp8.h │ │ │ └── CCScrollView │ │ │ │ ├── CCScrollView.h │ │ │ │ ├── CCSorting.h │ │ │ │ ├── CCTableView.h │ │ │ │ └── CCTableViewCell.h │ │ ├── LocalStorage │ │ │ └── LocalStorage.h │ │ ├── cocos-ext.h │ │ ├── libExtensions.lib │ │ ├── network │ │ │ ├── HttpClient.h │ │ │ ├── HttpRequest.h │ │ │ ├── HttpResponse.h │ │ │ └── WebSocket.h │ │ ├── physics_nodes │ │ │ ├── CCPhysicsDebugNode.h │ │ │ └── CCPhysicsSprite.h │ │ └── spine │ │ │ ├── Animation.h │ │ │ ├── AnimationState.h │ │ │ ├── AnimationStateData.h │ │ │ ├── Atlas.h │ │ │ ├── AtlasAttachmentLoader.h │ │ │ ├── Attachment.h │ │ │ ├── AttachmentLoader.h │ │ │ ├── Bone.h │ │ │ ├── BoneData.h │ │ │ ├── CCSkeleton.h │ │ │ ├── CCSkeletonAnimation.h │ │ │ ├── Json.h │ │ │ ├── RegionAttachment.h │ │ │ ├── Skeleton.h │ │ │ ├── SkeletonData.h │ │ │ ├── SkeletonJson.h │ │ │ ├── Skin.h │ │ │ ├── Slot.h │ │ │ ├── SlotData.h │ │ │ ├── extension.h │ │ │ ├── spine-cocos2dx.h │ │ │ └── spine.h │ └── xmake.lua ├── gd.h │ ├── LICENSE │ ├── README.md │ ├── achievement_nodes │ │ ├── AchievementBar.h │ │ └── AchievementNotifier.h │ ├── actions │ │ └── CCCircleWave.h │ ├── audio_nodes │ │ ├── FMODAudioEngine.h │ │ └── FMODSound.h │ ├── cell_nodes │ │ └── GJComment.h │ ├── delegates │ │ └── delegates.h │ ├── include │ │ ├── GDProtocols.h │ │ ├── GameToolbox.h │ │ ├── gd.h │ │ └── gdMacros.h │ ├── layers_scenes_transitions_nodes │ │ ├── CCBlockLayer.h │ │ ├── CCNodeContainer.h │ │ ├── ChallengesPage.h │ │ ├── ColorSelectPopup.h │ │ ├── CreateGuidelinesLayer.h │ │ ├── CreatorLayer.h │ │ ├── CustomSongLayer.h │ │ ├── CustomSongWidget.h │ │ ├── CustomizeObjectLayer.h │ │ ├── DailyLevelPage.h │ │ ├── DialogLayer.h │ │ ├── DrawGridLayer.h │ │ ├── EditorUI.h │ │ ├── FLAlertLayer.h │ │ ├── GJBaseGameLayer.h │ │ ├── GJDropDownLayer.h │ │ ├── GJGarageLayer.h │ │ ├── GJListLayer.h │ │ ├── GJRotationControl.h │ │ ├── GJScaleControl.h │ │ ├── GJSpecialColorSelect.h │ │ ├── GaragePage.h │ │ ├── GauntletSelectLayer.h │ │ ├── HSVWidgetPopup.h │ │ ├── InfoLayer.h │ │ ├── KeybindingsLayer.h │ │ ├── LeaderboardsLayer.h │ │ ├── LevelBrowserLayer.h │ │ ├── LevelEditorLayer.h │ │ ├── LevelInfoLayer.h │ │ ├── LevelSearchLayer.h │ │ ├── LevelSelectLayer.h │ │ ├── ListButtonBar.h │ │ ├── LoadingCircle.h │ │ ├── LoadingLayer.h │ │ ├── MenuLayer.h │ │ ├── MoreOptionsLayer.h │ │ ├── NumberInputLayer.h │ │ ├── OBB2D.h │ │ ├── OptionsLayer.h │ │ ├── PauseLayer.h │ │ ├── PlayLayer.h │ │ ├── ProfilePage.h │ │ ├── SetGroupIDLayer.h │ │ ├── SetIDPopup.h │ │ ├── SetupPulsePopup.h │ │ ├── SongInfoLayer.h │ │ ├── TextAlertPopup.h │ │ └── VideoOptionsLayer.h │ ├── level_nodes │ │ ├── ColorAction.h │ │ ├── GJGameLevel.h │ │ ├── GJMapPack.h │ │ ├── GJSearchObject.h │ │ ├── LevelSettingsObject.h │ │ └── SongInfoObject.h │ ├── manager_nodes │ │ ├── AchievementManager.h │ │ ├── GJAccountManager.h │ │ ├── GJEffectManager.h │ │ ├── GJUserScore.h │ │ ├── GManager.h │ │ ├── GameLevelManager.h │ │ ├── GameManager.h │ │ ├── GameSoundManager.h │ │ ├── GameStatsManager.h │ │ ├── LocalLevelManager.h │ │ ├── MusicDownloadManager.h │ │ └── ObjectToolbox.h │ ├── menu_nodes │ │ ├── CCMenuItemSpriteExtra.h │ │ ├── CCMenuItemToggler.h │ │ ├── InfoAlertButton.h │ │ └── Slider.h │ ├── other_nodes │ │ ├── CheckpointObject.h │ │ ├── DialogObject.h │ │ ├── GJRewardObject.h │ │ ├── PlayerCheckpoint.h │ │ ├── PointNode.h │ │ └── UndoObject.h │ ├── scroll_nodes │ │ ├── BoomListView.h │ │ ├── CCContentLayer.h │ │ ├── CCIndexPath.h │ │ ├── CCScrollLayerExt.h │ │ ├── CustomListView.h │ │ ├── ScrollingLayer.h │ │ └── TableView.h │ ├── sprite_nodes │ │ ├── AnimatedShopKeeper.h │ │ ├── ButtonSprite.h │ │ ├── CCAnimatedSprite.h │ │ ├── CCSpritePlus.h │ │ ├── ColorActionSprite.h │ │ ├── ColorChannelSprite.h │ │ ├── EffectGameObject.h │ │ ├── GJItemIcon.h │ │ ├── GJRobotSprite.h │ │ ├── GJSpiderSprite.h │ │ ├── GJSpriteColor.h │ │ ├── GameObject.h │ │ ├── HardStreak.h │ │ ├── PlayerObject.h │ │ ├── SimplePlayer.h │ │ ├── TeleportPortalObject.h │ │ └── TextArea.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── nuke-ctors.py │ │ ├── setup.py │ │ └── template.cpp │ ├── text_input_nodes │ │ └── CCTextInputNode.h │ ├── trigger_popups │ │ └── SetupPickupTriggerPopup.h │ └── xmake.lua ├── mat-dash │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── matdash.hpp │ │ └── matdash │ │ │ ├── boilerplate.hpp │ │ │ ├── cocos.hpp │ │ │ ├── console.hpp │ │ │ ├── detail │ │ │ ├── gen.hpp │ │ │ ├── gen.py │ │ │ └── impl.hpp │ │ │ └── minhook.hpp │ └── xmake.lua └── minhook │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── include │ └── MinHook.h │ └── src │ ├── buffer.c │ ├── buffer.h │ ├── hde │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h ├── src ├── main.cpp ├── utils.cpp └── utils.h └── xmake.lua /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | out/ 3 | .vs/ 4 | .vscode/ 5 | *.bat 6 | .xmake/ 7 | cfg.txt 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SoundEffects 2 | A geometry dash mod that adds playss sound effects to gameplay events 3 | Place the sounds in your resources folder 4 | 5 | ## Sounds 6 | 7 | ### GameMode Jumps / Clicks 8 | - `cubeJump.ogg` 9 | - `ballJump.ogg` 10 | - `ufoJump.ogg` 11 | - `ballJump.ogg` 12 | - `ufoJump.ogg` 13 | - `waveJump.ogg` 14 | - `spiderJump.ogg` 15 | - `robotJump.ogg` 16 | 17 | ### Orbs 18 | - `pinkOrb.ogg`; 19 | - `yellowOrb.ogg`; 20 | - `redOrb.ogg`; 21 | - `blueOrb.ogg`; 22 | - `greenOrb.ogg`; 23 | - `blackOrb.ogg`; 24 | - `greenDashOrb.ogg`; 25 | - `pinkDashOrb.ogg`; 26 | 27 | ### Pads 28 | - `pinkPad.ogg`; 29 | - `yellowPad.ogg`; 30 | - `redPad.ogg`; 31 | - `bluePad.ogg`; 32 | 33 | ### Speed changes 34 | - `speed05.ogg` 35 | - `speed1.ogg` 36 | - `speed2.ogg` 37 | - `speed3.ogg` 38 | - `speed4.ogg` 39 | 40 | ### Others 41 | - `collectItem.ogg` when an item is collected (key, coin, heart..) 42 | - `collectCoin.ogg` when a coin is collected (user/secret coin) 43 | 44 | 45 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/cocoa/CCInteger.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCINTEGER_H__ 2 | #define __CCINTEGER_H__ 3 | 4 | #include "CCObject.h" 5 | 6 | NS_CC_BEGIN 7 | 8 | /** 9 | * @addtogroup data_structures 10 | * @{ 11 | * @js NA 12 | */ 13 | 14 | class CC_DLL CCInteger : public CCObject 15 | { 16 | public: 17 | CCInteger(int v) 18 | : m_nValue(v) {} 19 | int getValue() const {return m_nValue;} 20 | 21 | static CCInteger* create(int v) 22 | { 23 | CCInteger* pRet = new CCInteger(v); 24 | pRet->autorelease(); 25 | return pRet; 26 | } 27 | 28 | /* override functions 29 | * @lua NA 30 | */ 31 | virtual void acceptVisitor(CCDataVisitor &visitor) { visitor.visit(this); } 32 | 33 | private: 34 | int m_nValue; 35 | }; 36 | 37 | // end of data_structure group 38 | /// @} 39 | 40 | NS_CC_END 41 | 42 | #endif /* __CCINTEGER_H__ */ 43 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/include/CCEventType.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef __CCEVENT_TYPE_H__ 3 | #define __CCEVENT_TYPE_H__ 4 | 5 | /** 6 | * This header is used for defining event types using in CCNotificationCenter 7 | */ 8 | 9 | // The application will come to foreground. 10 | // This message is used for reloading resources before come to foreground on Android. 11 | // This message is posted in main.cpp. 12 | #define EVENT_COME_TO_FOREGROUND "event_come_to_foreground" 13 | 14 | // The application will come to background. 15 | // This message is used for doing something before coming to background, such as save CCRenderTexture. 16 | // This message is posted in cocos2dx/platform/android/jni/MessageJni.cpp. 17 | #define EVENT_COME_TO_BACKGROUND "event_come_to_background" 18 | 19 | #endif // __CCEVENT_TYPE_H__ 20 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/libcocos2d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/libcocos2d.lib -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/CCDevice.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCDEVICE_H__ 2 | #define __CCDEVICE_H__ 3 | 4 | #include "CCPlatformMacros.h" 5 | 6 | NS_CC_BEGIN 7 | /** 8 | @js NA 9 | @lua NA 10 | */ 11 | class CC_DLL CCDevice 12 | { 13 | private: 14 | CCDevice(); 15 | public: 16 | /** 17 | * Gets the DPI of device 18 | * @return The DPI of device. 19 | */ 20 | static int getDPI(); 21 | }; 22 | 23 | 24 | NS_CC_END 25 | 26 | #endif /* __CCDEVICE_H__ */ 27 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libcurl/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libcurl/libs/armeabi-v7a/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 44e542ea244df0150ae90190bf59a34356ac2c25 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libcurl/libs/armeabi/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 5b9f4eebb5e41bbd790a639882c718b0f91b2393 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libcurl/libs/x86/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 445f2725cd3af681c6b88dfe13d671b4aa3cdab9 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libjpeg/libs/armeabi-v7a/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 68aaf2639b745d8479ad875745409f9cf65f4b93 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libjpeg/libs/armeabi/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 78e9ef9f9794da2d2098e733fd90ecad403ed735 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libjpeg/libs/x86/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e8d210cb8607af7aa98219fce89ea1e6c14f8fc2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libpng/include/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d379dead7addc477467d2ac1e1476a6570d96345 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libpng/include/pngusr.h: -------------------------------------------------------------------------------- 1 | #define PNG_USER_PRIVATEBUILD "Skia build; no MNG features" 2 | #define PNG_USER_DLLFNAME_POSTFIX "Sk" 3 | #define PNG_NO_MNG_FEATURES 4 | #define PNG_NO_READ_GAMMA 5 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libpng/libs/armeabi-v7a/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 2f84bee7e68f8b6766688634d6a35221cd006a66 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libpng/libs/armeabi/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 7fc417297c12c4199a31febebb0e9c53abb5f762 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libpng/libs/x86/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 649d8a9d888a3368eeb0b63ac2832b9faebc3502 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libtiff/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 3.9.2\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20091104 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libtiff/libs/armeabi-v7a/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 08568c709e115ac77d96705d4b5cb47c1f494514 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libtiff/libs/armeabi/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3e4d0de19a158758f19a5b65db8b7f14c314771a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libtiff/libs/x86/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | f14376ce9ace14d386cb5a3b2178454bad786fb6 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libwebp/libs/armeabi-v7a/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | adc7cbeb1097f003fedce13fefbc86289e571928 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libwebp/libs/armeabi/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 253c75fb46d690282777e0a5dfaf6cd3f1d359aa -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/android/prebuilt/libwebp/libs/x86/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 66736dfe6d2311057e4e29e2dae272f8bdb81a25 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/blackberry/include/libtiff/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.2\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120615 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/blackberry/libraries/armle-v7/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 1becc2f3982c253c2e61a8dd05d1dbae2496cda7 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/blackberry/libraries/armle-v7/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b8b0fde630d9d106e663612ad667a586b84c3cb8 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/blackberry/libraries/x86/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4e41914a2f1a1e46415d9692b59ba225585a3ddc -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/blackberry/libraries/x86/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | c9539487a40d3a72af2e5d7df4e01885943ffd83 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libpng/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9eada7d4389ece59576d53cff090fe5d9fc910e0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/README: -------------------------------------------------------------------------------- 1 | libfreetype.a from http://download.savannah.gnu.org/releases/freetype/freetype-2.4.12.tar.gz -- configure flags: ./configure --enable-static --prefix=`pwd`/../build 2 | libpng.a from https://github.com/hachque-Emscripten/libpng-1.2.49.git 3 | libz.a from http://zlib.net/zlib-1.2.8.tar.gz -- configure flags: ./configure --prefix=`pwd`/../build --static 4 | libwebp.a from https://code.google.com/p/webp/downloads/detail?name=libwebp-0.3.0.tar.gz -- configure with ./configure --disable-threading --prefix=/tmp/libwebp 5 | libtiff.a from ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz -- configure flags: ./configure --enable-static --prefix=`pwd`/../build CFLAGS=-DNDEBUG 6 | libjpeg.a from http://www.ijg.org/files/jpegsrc.v9.tar.gz -- configure flags: ./configure --enable-static --prefix=`pwd`/../build 7 | libxml2.a from ftp://xmlsoft.org/libxml2/libxml2-2.9.1.tar.gz -- configure flags: ./configure --with-http=no --with-ftp=no --prefix=`pwd`/../build --with-python=no --with-threads=no --enable-static 8 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 02dbd713423f0bf57067a40e5a954957a031a617 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | dc996fbca0e179cc8c7635b4ffd924060aa9a934 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d804fdb860e9fbdd50167fa40990d844d321c3f7 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libtiffxx.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | fd6d69587bc3222ceea24ff11e14a42127ac031b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9b419a33d2c14b37fc5c5037c99826cff1b1d217 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libxml2.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 80a796ba46316f8e74e961468bb970664bda0543 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libraries/libz.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | a42146a3b7d81362b0804abadef75738311ab5a3 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/emscripten/libtiff/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.3\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120922 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/ios/libraries/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | c135286e812602cc184684b59b4d074f723ef4a5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/ios/libraries/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | c26c3c22887023d322926dcbbd0f69377deedaf8 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libfreetype2/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 660b3032d488657cb0e58eb375b03657b16fcd31 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libjpeg/jconfig.h: -------------------------------------------------------------------------------- 1 | /* jconfig.dj --- jconfig.h for DJGPP (Delorie's GNU C port) on MS-DOS. */ 2 | /* see jconfig.doc for explanations */ 3 | 4 | #define HAVE_PROTOTYPES 5 | #define HAVE_UNSIGNED_CHAR 6 | #define HAVE_UNSIGNED_SHORT 7 | /* #define void char */ 8 | /* #define const */ 9 | #undef CHAR_IS_UNSIGNED 10 | #define HAVE_STDDEF_H 11 | #define HAVE_STDLIB_H 12 | #undef NEED_BSD_STRINGS 13 | #undef NEED_SYS_TYPES_H 14 | #undef NEED_FAR_POINTERS /* DJGPP uses flat 32-bit addressing */ 15 | #undef NEED_SHORT_EXTERNAL_NAMES 16 | #undef INCOMPLETE_TYPES_BROKEN 17 | 18 | #ifdef JPEG_INTERNALS 19 | 20 | #undef RIGHT_SHIFT_IS_UNSIGNED 21 | 22 | #endif /* JPEG_INTERNALS */ 23 | 24 | #ifdef JPEG_CJPEG_DJPEG 25 | 26 | #define BMP_SUPPORTED /* BMP image file format */ 27 | #define GIF_SUPPORTED /* GIF image file format */ 28 | #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */ 29 | #undef RLE_SUPPORTED /* Utah RLE image file format */ 30 | #define TARGA_SUPPORTED /* Targa image file format */ 31 | 32 | #undef TWO_FILE_COMMANDLINE /* optional */ 33 | #define USE_SETMODE /* Needed to make one-file style work in DJGPP */ 34 | #undef NEED_SIGNAL_CATCHER /* Define this if you use jmemname.c */ 35 | #undef DONT_USE_B_MODE 36 | #undef PROGRESS_REPORT /* optional */ 37 | 38 | #endif /* JPEG_CJPEG_DJPEG */ 39 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libjpeg/jversion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * jversion.h 3 | * 4 | * Copyright (C) 1991-2011, Thomas G. Lane, Guido Vollbeding. 5 | * This file is part of the Independent JPEG Group's software. 6 | * For conditions of distribution and use, see the accompanying README file. 7 | * 8 | * This file contains software version identification. 9 | */ 10 | 11 | 12 | #define JVERSION "8c 16-Jan-2011" 13 | 14 | #define JCOPYRIGHT "Copyright (C) 2011, Thomas G. Lane, Guido Vollbeding" 15 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libpng/PngFile.h: -------------------------------------------------------------------------------- 1 | //------------------------------------------ 2 | // PNGFILE.H -- Header File for pngfile.c 3 | //------------------------------------------ 4 | 5 | // Copyright 2000, Willem van Schaik. 6 | 7 | // This code is released under the libpng license. 8 | // For conditions of distribution and use, see the disclaimer 9 | // and license in png.h 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | 16 | void PngFileInitialize (HWND hwnd) ; 17 | BOOL PngFileOpenDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 18 | BOOL PngFileSaveDlg (HWND hwnd, PTSTR pstrFileName, PTSTR pstrTitleName) ; 19 | 20 | BOOL PngLoadImage (PTSTR pstrFileName, png_byte **ppbImageData, 21 | int *piWidth, int *piHeight, int *piChannels, png_color *pBkgColor); 22 | BOOL PngSaveImage (PTSTR pstrFileName, png_byte *pDiData, 23 | int iWidth, int iHeight, png_color BkgColor); 24 | 25 | #ifndef PNG_STDIO_SUPPORTED 26 | static void png_read_data(png_structp png_ptr, png_bytep data, png_size_t length); 27 | static void png_write_data(png_structp png_ptr, png_bytep data, png_size_t length); 28 | static void png_flush(png_structp png_ptr); 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libpng/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | bb7f85fa08c6f988ed3ee571530ced66cb95cd0a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libpng/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Developer Studio generated include file. 3 | // Used by VisualPng.rc 4 | // 5 | #define IDM_FILE_OPEN 40001 6 | #define IDM_FILE_SAVE 40002 7 | #define IDM_FILE_NEXT 40003 8 | #define IDM_FILE_PREVIOUS 40004 9 | #define IDM_FILE_EXIT 40005 10 | #define IDM_OPTIONS_BACKGROUND 40006 11 | #define IDM_OPTIONS_STRETCH 40007 12 | #define IDM_HELP_ABOUT 40008 13 | 14 | // Next default values for new objects 15 | // 16 | #ifdef APSTUDIO_INVOKED 17 | #ifndef APSTUDIO_READONLY_SYMBOLS 18 | #define _APS_NEXT_RESOURCE_VALUE 113 19 | #define _APS_NEXT_COMMAND_VALUE 40009 20 | #define _APS_NEXT_CONTROL_VALUE 1001 21 | #define _APS_NEXT_SYMED_VALUE 101 22 | #endif 23 | #endif 24 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 62d3069171e474ac720640f58c31cac4d312a2c9 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libfreetype.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 605d56a7423e747f13034756e21bf64e0ad94a43 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 26c9923522213ccf69d7934d31376fcb28216b29 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d582ee99eb4cf5b1a3e1010535d3ad0e02b07d15 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4b56ee27894b0f9a9087e2fbf3d83748cba701c0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/lib64/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | a4f7df2875a707e194ba85617d99229c4e0f61cc -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libcurl.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b4d7f374257b051c9241d6ef7fbc80bf6966ad3a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libfreetype.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d93d3233665073e77a9d0317369f53e89be3b642 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libjpeg.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | dcd9ca68ab355cd31812a2d804f63d24166079fa -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libpng.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9d5ef2f5aa3f54e67af7add2d3ac278cc8199545 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libpng15.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | ba732a1c08a59975bbb5bd74c3b708fbf742c109 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libtiff.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3a0c1a883a9612219ba79be17fdd5b386d67ed94 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libraries/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 7ab1fbd68104e8dd8d53b7ef8357ecbd0b5d56fe -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/linux/libtiff/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120218 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/mac/libraries/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 98a9f91fff796092bb7afab1f50fb11c3fe696d9 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/include/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 70c39008b8d55b975422977b88b30dd69ab3fd4d -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src Jamfile 2 | # 3 | # Copyright 2001, 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) ; 13 | 14 | # The file is used to define macros that are 15 | # later used in #include statements. It needs to be parsed in order to 16 | # record these definitions. 17 | # 18 | HDRMACRO [ FT2_SubDir $(FT2_INCLUDE_DIR) internal internal.h ] ; 19 | 20 | for xx in $(FT2_COMPONENTS) 21 | { 22 | SubInclude FT2_TOP $(FT2_SRC_DIR) $(xx) ; 23 | } 24 | 25 | # end of src Jamfile 26 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/autofit/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/autofit Jamfile 2 | # 3 | # Copyright 2003, 2004, 2005, 2006, 2007, 2009 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP src autofit ; 13 | 14 | { 15 | local _sources ; 16 | 17 | # define FT2_AUTOFIT2 to enable experimental latin hinter replacement 18 | if $(FT2_AUTOFIT2) 19 | { 20 | DEFINES += FT_OPTION_AUTOFIT2 ; 21 | } 22 | if $(FT2_MULTI) 23 | { 24 | _sources = afangles afglobal afhints aflatin afcjk afindic afloader afmodule afdummy afwarp afpic ; 25 | 26 | if $(FT2_AUTOFIT2) 27 | { 28 | _sources += aflatin2 ; 29 | } 30 | } 31 | else 32 | { 33 | _sources = autofit ; 34 | } 35 | 36 | Library $(FT2_LIB) : $(_sources).c ; 37 | } 38 | 39 | # end of src/autofit Jamfile 40 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/autofit/afangles.h: -------------------------------------------------------------------------------- 1 | /* 2 | * afangles.h 3 | * 4 | * This is a dummy file, used to please the build system. It is never 5 | * included by the auto-fitter sources. 6 | * 7 | */ 8 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/base/ftobjs.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cb44b8cca438a76648eb4b8e168a15395db0bc1b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/bdf/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/bdf Jamfile 2 | # 3 | # Copyright 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) bdf ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = bdfdrivr bdflib ; 20 | } 21 | else 22 | { 23 | _sources = bdf ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/bdf Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/cache/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/cache Jamfile 2 | # 3 | # Copyright 2001, 2003, 2004 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) cache ; 13 | 14 | # The file contains some macro definitions that are 15 | # later used in #include statements related to the cache sub-system. It 16 | # needs to be parsed through a HDRMACRO rule for macro definitions. 17 | # 18 | HDRMACRO [ FT2_SubDir include ftcache.h ] ; 19 | 20 | { 21 | local _sources ; 22 | 23 | if $(FT2_MULTI) 24 | { 25 | _sources = ftcmru 26 | ftcmanag 27 | ftccache 28 | ftcglyph 29 | ftcsbits 30 | ftcimage 31 | ftcbasic 32 | ftccmap 33 | ; 34 | } 35 | else 36 | { 37 | _sources = ftcache ; 38 | } 39 | 40 | Library $(FT2_LIB) : $(_sources).c ; 41 | } 42 | 43 | # end of src/cache Jamfile 44 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/cff/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/cff Jamfile 2 | # 3 | # Copyright 2001, 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) cff ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = cffdrivr cffgload cffload cffobjs cffparse cffcmap cffpic ; 20 | } 21 | else 22 | { 23 | _sources = cff ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/cff Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/cid/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/cid Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) cid ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = cidobjs cidload cidgload cidriver cidparse ; 20 | } 21 | else 22 | { 23 | _sources = type1cid ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/cid Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/gxvalid/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/gxvalid Jamfile 2 | # 3 | # Copyright 2005 by 4 | # suzuki toshiya, Masatake YAMATO and Red Hat K.K. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) gxvalid ; 13 | 14 | 15 | { 16 | local _sources ; 17 | 18 | if $(FT2_MULTI) 19 | { 20 | _sources = gxvcommn gxvfeat gxvbsln gxvtrak gxvopbd gxvprop 21 | gxvmort gxvmort0 gxvmort1 gxvmort2 gxvmort4 gxvmort5 22 | gxvmorx gxvmorx0 gxvmorx1 gxvmorx2 gxvmorx4 gxvmorx5 23 | gxvlcar gxvkern gxvmod gxvjust ; 24 | } 25 | else 26 | { 27 | _sources = gxvalid ; 28 | } 29 | 30 | Library $(FT2_LIB) : $(_sources).c ; 31 | } 32 | 33 | # end of src/gxvalid Jamfile 34 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/gzip/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/gzip Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) gzip ; 13 | 14 | Library $(FT2_LIB) : ftgzip.c ; 15 | 16 | # end of src/pcf Jamfile 17 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/gzip/infblock.h: -------------------------------------------------------------------------------- 1 | /* infblock.h -- header to use infblock.c 2 | * Copyright (C) 1995-2002 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | #ifndef _INFBLOCK_H 12 | #define _INFBLOCK_H 13 | 14 | struct inflate_blocks_state; 15 | typedef struct inflate_blocks_state FAR inflate_blocks_statef; 16 | 17 | local inflate_blocks_statef * inflate_blocks_new OF(( 18 | z_streamp z, 19 | check_func c, /* check function */ 20 | uInt w)); /* window size */ 21 | 22 | local int inflate_blocks OF(( 23 | inflate_blocks_statef *, 24 | z_streamp , 25 | int)); /* initial return code */ 26 | 27 | local void inflate_blocks_reset OF(( 28 | inflate_blocks_statef *, 29 | z_streamp , 30 | uLongf *)); /* check value on output */ 31 | 32 | local int inflate_blocks_free OF(( 33 | inflate_blocks_statef *, 34 | z_streamp)); 35 | 36 | #endif /* _INFBLOCK_H */ 37 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/gzip/infcodes.h: -------------------------------------------------------------------------------- 1 | /* infcodes.h -- header to use infcodes.c 2 | * Copyright (C) 1995-2002 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | #ifndef _INFCODES_H 12 | #define _INFCODES_H 13 | 14 | struct inflate_codes_state; 15 | typedef struct inflate_codes_state FAR inflate_codes_statef; 16 | 17 | local inflate_codes_statef *inflate_codes_new OF(( 18 | uInt, uInt, 19 | inflate_huft *, inflate_huft *, 20 | z_streamp )); 21 | 22 | local int inflate_codes OF(( 23 | inflate_blocks_statef *, 24 | z_streamp , 25 | int)); 26 | 27 | local void inflate_codes_free OF(( 28 | inflate_codes_statef *, 29 | z_streamp )); 30 | 31 | #endif /* _INFCODES_H */ 32 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/lzw/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/lzw Jamfile 2 | # 3 | # Copyright 2004, 2006 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) lzw ; 13 | 14 | Library $(FT2_LIB) : ftlzw.c ; 15 | 16 | # end of src/lzw Jamfile 17 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/otvalid/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/otvalid Jamfile 2 | # 3 | # Copyright 2004 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) otvalid ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = otvbase otvcommn otvgdef otvgpos otvgsub otvjstf otvmod otvmath ; 20 | } 21 | else 22 | { 23 | _sources = otvalid ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/otvalid Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/pcf/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/pcf Jamfile 2 | # 3 | # Copyright 2001, 2003 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) pcf ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = pcfdrivr pcfread pcfutil ; 20 | } 21 | else 22 | { 23 | _sources = pcf ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/pcf Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/pfr/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/pfr Jamfile 2 | # 3 | # Copyright 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) pfr ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = pfrdrivr pfrgload pfrload pfrobjs pfrcmap pfrsbit ; 20 | } 21 | else 22 | { 23 | _sources = pfr ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/pfr Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/psaux/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/psaux Jamfile 2 | # 3 | # Copyright 2001, 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) psaux ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = psauxmod psobjs t1decode t1cmap 20 | psconv afmparse 21 | ; 22 | } 23 | else 24 | { 25 | _sources = psaux ; 26 | } 27 | 28 | Library $(FT2_LIB) : $(_sources).c ; 29 | } 30 | 31 | # end of src/psaux Jamfile 32 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/pshinter/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/pshinter Jamfile 2 | # 3 | # Copyright 2001, 2003 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) pshinter ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = pshrec pshglob pshalgo pshmod pshpic ; 20 | } 21 | else 22 | { 23 | _sources = pshinter ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/pshinter Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/psnames/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/psnames Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) psnames ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = psmodule pspic ; 20 | } 21 | else 22 | { 23 | _sources = psnames ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/psnames Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/psnames/pstables.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 1521e9c28541aa8fc145066d1708d67815a00a0b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/raster/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/raster Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) raster ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = ftraster ftrend1 rastpic ; 20 | } 21 | else 22 | { 23 | _sources = raster ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/raster Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/raster/ftraster.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9638dfb026c9f02d9c08bce9de71a74f00fb4da6 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/sfnt/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/sfnt Jamfile 2 | # 3 | # Copyright 2001, 2002, 2004, 2005 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) sfnt ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = sfobjs sfdriver ttcmap ttmtx ttpost ttload ttsbit ttkern ttbdf sfntpic ; 20 | } 21 | else 22 | { 23 | _sources = sfnt ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/sfnt Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/sfnt/ttcmap.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 544750ab17fc272b41ebbdecd1457d164b75f78b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/smooth/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/smooth Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) smooth ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = ftgrays ftsmooth ftspic ; 20 | } 21 | else 22 | { 23 | _sources = smooth ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/smooth Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/tools/Jamfile: -------------------------------------------------------------------------------- 1 | # Jamfile for src/tools 2 | # 3 | SubDir FT2_TOP src tools ; 4 | 5 | Main apinames : apinames.c ; 6 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/tools/docmaker/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/tools/ftrandom/Makefile: -------------------------------------------------------------------------------- 1 | # TOP_DIR and OBJ_DIR should be set by the user to the right directories, 2 | # if necessary. 3 | 4 | TOP_DIR ?= ../../.. 5 | OBJ_DIR ?= $(TOP_DIR)/objs 6 | 7 | 8 | # The setup below is for gcc on a Unix-like platform. 9 | 10 | SRC_DIR = $(TOP_DIR)/src/tools/ftrandom 11 | 12 | CC = gcc 13 | WFLAGS = -Wmissing-prototypes \ 14 | -Wunused \ 15 | -Wimplicit \ 16 | -Wreturn-type \ 17 | -Wparentheses \ 18 | -pedantic \ 19 | -Wformat \ 20 | -Wchar-subscripts \ 21 | -Wsequence-point 22 | CFLAGS = $(WFLAGS) \ 23 | -g \ 24 | -I $(TOP_DIR)/include 25 | LIBS = -lm \ 26 | -L $(OBJ_DIR) \ 27 | -lfreetype \ 28 | -lz 29 | 30 | all: $(OBJ_DIR)/ftrandom 31 | 32 | $(OBJ_DIR)/ftrandom: $(SRC_DIR)/ftrandom.c $(OBJ_DIR)/libfreetype.a 33 | $(CC) -o $(OBJ_DIR)/ftrandom $(CFLAGS) $(SRC_DIR)/ftrandom.c $(LIBS) 34 | 35 | # EOF 36 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/tools/glnames.py.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 55573b22fe80ba039cbd13c7469bd68030f9f991 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/truetype/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/truetype Jamfile 2 | # 3 | # Copyright 2001, 2004 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) truetype ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = ttdriver ttobjs ttpload ttgload ttinterp ttgxvar ttpic ; 20 | } 21 | else 22 | { 23 | _sources = truetype ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/truetype Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/truetype/ttinterp.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | f55b8eeabfe91eaaab1dd53b6b9f582d4813970a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/type1/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/type1 Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) type1 ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = t1afm t1driver t1objs t1load t1gload t1parse ; 20 | } 21 | else 22 | { 23 | _sources = type1 ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/type1 Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/type42/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/type42 Jamfile 2 | # 3 | # Copyright 2002 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) type42 ; 13 | 14 | { 15 | local _sources ; 16 | 17 | if $(FT2_MULTI) 18 | { 19 | _sources = t42objs t42parse t42drivr ; 20 | } 21 | else 22 | { 23 | _sources = type42 ; 24 | } 25 | 26 | Library $(FT2_LIB) : $(_sources).c ; 27 | } 28 | 29 | # end of src/type42 Jamfile 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/freetype/src/winfonts/Jamfile: -------------------------------------------------------------------------------- 1 | # FreeType 2 src/winfonts Jamfile 2 | # 3 | # Copyright 2001 by 4 | # David Turner, Robert Wilhelm, and Werner Lemberg. 5 | # 6 | # This file is part of the FreeType project, and may only be used, modified, 7 | # and distributed under the terms of the FreeType project license, 8 | # LICENSE.TXT. By continuing to use, modify, or distribute this file you 9 | # indicate that you have read the license and understand and accept it 10 | # fully. 11 | 12 | SubDir FT2_TOP $(FT2_SRC_DIR) winfonts ; 13 | 14 | Library $(FT2_LIB) : winfnt.c ; 15 | 16 | # end of src/winfonts Jamfile 17 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libtiff.mkf: -------------------------------------------------------------------------------- 1 | includepath 2 | { 3 | libtiff/headers 4 | } 5 | 6 | files 7 | { 8 | [source] 9 | (libtiff/source) 10 | tif_aux.c 11 | tif_close.c 12 | tif_codec.c 13 | tif_color.c 14 | tif_compress.c 15 | tif_dir.c 16 | tif_dirinfo.c 17 | tif_dirread.c 18 | tif_dirwrite.c 19 | tif_dumpmode.c 20 | tif_error.c 21 | tif_extension.c 22 | tif_fax3.c 23 | tif_fax3sm.c 24 | tif_flush.c 25 | tif_getimage.c 26 | tif_jbig.c 27 | tif_jpeg.c 28 | tif_luv.c 29 | tif_lzw.c 30 | tif_next.c 31 | tif_ojpeg.c 32 | tif_open.c 33 | tif_packbits.c 34 | tif_pixarlog.c 35 | tif_predict.c 36 | tif_print.c 37 | tif_read.c 38 | tif_strip.c 39 | tif_swab.c 40 | tif_thunder.c 41 | tif_tile.c 42 | tif_unix.c 43 | tif_version.c 44 | tif_warning.c 45 | tif_write.c 46 | tif_zip.c 47 | 48 | [headers] 49 | (libtiff/headers) 50 | t4.h 51 | tiff.h 52 | tiffconf.h 53 | tiffio.h 54 | tiffiop.h 55 | tiffvers.h 56 | tif_config.h 57 | tif_dir.h 58 | tif_fax3.h 59 | tif_predict.h 60 | uvcode.h 61 | } 62 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libtiff/headers/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.3\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120922 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libtiff/source/tif_dirread.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 19a26e2788260cb81ede36d71ce023bd90973037 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libtiff/source/tif_fax3sm.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 822191ecf4d70d88ff7ffe252911a8c97c769895 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp.mkf: -------------------------------------------------------------------------------- 1 | includepath 2 | { 3 | libwebp/webp 4 | } 5 | 6 | files 7 | { 8 | ["source"] 9 | ("libwebp/dec") 10 | ["dec"] 11 | "*.c" 12 | "*.h" 13 | 14 | ("libwebp/dsp") 15 | ["dsp"] 16 | "*.c" 17 | "*.h" 18 | 19 | ("libwebp/enc") 20 | ["enc"] 21 | "*.c" 22 | "*.h" 23 | 24 | ("libwebp/mux") 25 | ["mux"] 26 | "*.c" 27 | "*.h" 28 | 29 | ("libwebp/utils") 30 | ["utils"] 31 | "*.c" 32 | "*.h" 33 | 34 | ["headers"] 35 | ("libwebp/webp") 36 | "*.h" 37 | } 38 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp/dec/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/src 2 | noinst_LTLIBRARIES = libwebpdecode.la 3 | 4 | libwebpdecode_la_SOURCES = 5 | libwebpdecode_la_SOURCES += alpha.c 6 | libwebpdecode_la_SOURCES += buffer.c 7 | libwebpdecode_la_SOURCES += decode_vp8.h 8 | libwebpdecode_la_SOURCES += frame.c 9 | libwebpdecode_la_SOURCES += idec.c 10 | libwebpdecode_la_SOURCES += io.c 11 | libwebpdecode_la_SOURCES += layer.c 12 | libwebpdecode_la_SOURCES += quant.c 13 | libwebpdecode_la_SOURCES += tree.c 14 | libwebpdecode_la_SOURCES += vp8.c 15 | libwebpdecode_la_SOURCES += vp8i.h 16 | libwebpdecode_la_SOURCES += vp8l.c 17 | libwebpdecode_la_SOURCES += vp8li.h 18 | libwebpdecode_la_SOURCES += webp.c 19 | libwebpdecode_la_SOURCES += webpi.h 20 | 21 | libwebpdecodeinclude_HEADERS = 22 | libwebpdecodeinclude_HEADERS += ../webp/decode.h 23 | libwebpdecodeinclude_HEADERS += ../webp/types.h 24 | noinst_HEADERS = 25 | noinst_HEADERS += ../webp/format_constants.h 26 | 27 | libwebpdecode_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE) 28 | libwebpdecodeincludedir = $(includedir)/webp 29 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp/dsp/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/src 2 | noinst_LTLIBRARIES = libwebpdsp.la 3 | 4 | libwebpdsp_la_SOURCES = 5 | libwebpdsp_la_SOURCES += cpu.c 6 | libwebpdsp_la_SOURCES += dec.c 7 | libwebpdsp_la_SOURCES += dec_neon.c 8 | libwebpdsp_la_SOURCES += dec_sse2.c 9 | libwebpdsp_la_SOURCES += dsp.h 10 | libwebpdsp_la_SOURCES += enc.c 11 | libwebpdsp_la_SOURCES += enc_sse2.c 12 | libwebpdsp_la_SOURCES += lossless.c 13 | libwebpdsp_la_SOURCES += lossless.h 14 | libwebpdsp_la_SOURCES += upsampling.c 15 | libwebpdsp_la_SOURCES += upsampling_sse2.c 16 | libwebpdsp_la_SOURCES += yuv.c 17 | libwebpdsp_la_SOURCES += yuv.h 18 | 19 | libwebpdspinclude_HEADERS = ../webp/types.h 20 | noinst_HEADERS = 21 | noinst_HEADERS += ../dec/decode_vp8.h 22 | noinst_HEADERS += ../webp/decode.h 23 | 24 | libwebpdsp_la_LDFLAGS = -lm 25 | libwebpdsp_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE) 26 | libwebpdspincludedir = $(includedir)/webp 27 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp/enc/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/src 2 | noinst_LTLIBRARIES = libwebpencode.la 3 | 4 | libwebpencode_la_SOURCES = 5 | libwebpencode_la_SOURCES += alpha.c 6 | libwebpencode_la_SOURCES += analysis.c 7 | libwebpencode_la_SOURCES += backward_references.c 8 | libwebpencode_la_SOURCES += config.c 9 | libwebpencode_la_SOURCES += cost.c 10 | libwebpencode_la_SOURCES += cost.h 11 | libwebpencode_la_SOURCES += filter.c 12 | libwebpencode_la_SOURCES += frame.c 13 | libwebpencode_la_SOURCES += histogram.c 14 | libwebpencode_la_SOURCES += iterator.c 15 | libwebpencode_la_SOURCES += layer.c 16 | libwebpencode_la_SOURCES += picture.c 17 | libwebpencode_la_SOURCES += quant.c 18 | libwebpencode_la_SOURCES += syntax.c 19 | libwebpencode_la_SOURCES += tree.c 20 | libwebpencode_la_SOURCES += vp8enci.h 21 | libwebpencode_la_SOURCES += vp8l.c 22 | libwebpencode_la_SOURCES += webpenc.c 23 | 24 | libwebpencodeinclude_HEADERS = 25 | libwebpencodeinclude_HEADERS += ../webp/encode.h 26 | libwebpencodeinclude_HEADERS += ../webp/types.h 27 | noinst_HEADERS = 28 | noinst_HEADERS += ../webp/format_constants.h 29 | 30 | libwebpencode_la_LDFLAGS = -lm 31 | libwebpencode_la_CPPFLAGS = $(USE_EXPERIMENTAL_CODE) 32 | libwebpencodeincludedir = $(includedir)/webp 33 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp/mux/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/src 2 | lib_LTLIBRARIES = libwebpmux.la 3 | 4 | libwebpmux_la_SOURCES = 5 | libwebpmux_la_SOURCES += demux.c 6 | libwebpmux_la_SOURCES += muxedit.c 7 | libwebpmux_la_SOURCES += muxi.h 8 | libwebpmux_la_SOURCES += muxinternal.c 9 | libwebpmux_la_SOURCES += muxread.c 10 | 11 | libwebpmuxinclude_HEADERS = 12 | libwebpmuxinclude_HEADERS += ../webp/mux.h 13 | libwebpmuxinclude_HEADERS += ../webp/types.h 14 | 15 | libwebpmux_la_LDFLAGS = -version-info 0:0:0 16 | libwebpmuxincludedir = $(includedir)/webp 17 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/marmalade/libwebp/utils/Makefile.am: -------------------------------------------------------------------------------- 1 | AM_CPPFLAGS = -I$(top_srcdir)/src 2 | noinst_LTLIBRARIES = libwebputils.la 3 | 4 | libwebputils_la_SOURCES = 5 | libwebputils_la_SOURCES += bit_reader.c 6 | libwebputils_la_SOURCES += bit_reader.h 7 | libwebputils_la_SOURCES += bit_writer.c 8 | libwebputils_la_SOURCES += bit_writer.h 9 | libwebputils_la_SOURCES += color_cache.c 10 | libwebputils_la_SOURCES += color_cache.h 11 | libwebputils_la_SOURCES += filters.c 12 | libwebputils_la_SOURCES += filters.h 13 | libwebputils_la_SOURCES += huffman.c 14 | libwebputils_la_SOURCES += huffman.h 15 | libwebputils_la_SOURCES += huffman_encode.c 16 | libwebputils_la_SOURCES += huffman_encode.h 17 | libwebputils_la_SOURCES += quant_levels.c 18 | libwebputils_la_SOURCES += quant_levels.h 19 | libwebputils_la_SOURCES += rescaler.c 20 | libwebputils_la_SOURCES += rescaler.h 21 | libwebputils_la_SOURCES += thread.c 22 | libwebputils_la_SOURCES += thread.h 23 | libwebputils_la_SOURCES += utils.c 24 | libwebputils_la_SOURCES += utils.h 25 | 26 | libwebputilsinclude_HEADERS = ../webp/types.h 27 | libwebputilsincludedir = $(includedir)/webp 28 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/prebuilt/libwebp/libs/armv7l/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d1b52611b9daf7ae2bddfbafc9c53f85d9a03076 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/prebuilt/libwebp/libs/x86/libwebp.a.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4e9f805d733b2a5f3a7835601d0107df81598911 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libexpat.so.1.5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libexpat.so.1.5.2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libexpat.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4b4ce233c67c2bf8071b96cc330894125d07722f -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libz.so.1.2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libz.so.1.2.5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/lib/libz.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 723e134840fbf51fb73b53d142f398b4cfd6d833 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/include/freetype2/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- 1 | #ifndef __FTCONFIG_H__MULTILIB 2 | #define __FTCONFIG_H__MULTILIB 3 | 4 | #include 5 | 6 | #if __WORDSIZE == 32 7 | # include "ftconfig-32.h" 8 | #elif __WORDSIZE == 64 9 | # include "ftconfig-64.h" 10 | #else 11 | # error "unexpected value for __WORDSIZE macro" 12 | #endif 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/include/freetype2/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- 1 | /* This is a generated file. */ 2 | FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) 3 | FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) 4 | FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) 5 | FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) 6 | FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) 7 | FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) 8 | FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) 9 | FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) 10 | FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) 11 | FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) 12 | FT_USE_MODULE( FT_Module_Class, autofit_module_class ) 13 | FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) 14 | FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) 15 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) 16 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) 17 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) 18 | FT_USE_MODULE( FT_Module_Class, psaux_module_class ) 19 | FT_USE_MODULE( FT_Module_Class, psnames_module_class ) 20 | /* EOF */ 21 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/include/freetype2/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 63c291af1270c8a1c4ba40388b000f0710ea38c6 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/include/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 35609691794f066d3d94c01d357b4fa18d88829d -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.3\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120922 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcares.so.2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcares.so.2.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcrypto.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcrypto.so.1.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcrypto.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4ff61e758dc8c01a4a82df141540813f3ab351dc -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcurl.so.4.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcurl.so.4.3.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libcurl.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 06829f6cfebf4523192dfaf5cf042032f1b96632 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfontconfig.so.1.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfontconfig.so.1.5.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfontconfig.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b6a6a198eea646c5e090a964e180aa78058b7d48 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfreetype.so.6.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfreetype.so.6.8.1 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libfreetype.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b9efbf4824b8de5ff8bd0db831c77bf679737f9f -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libidn.so.11.5.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libidn.so.11.5.44 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libidn.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 7a5c3a876a13dc979b1b43449915599789fdc845 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libjpeg.so.8.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libjpeg.so.8.0.2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libjpeg.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 25bb05f20c84c6a144bddda26b72a3a6ce09dc37 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libpng.so.3.50.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libpng.so.3.50.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libpng.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 5357b728e507259c4ad8585ad8f8c2dddb2699d9 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libssl.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libssl.so.1.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libssl.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d7fb557b3a3485e594153c8fb3fbb4423320fdb1 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libtiff.so.5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libtiff.so.5.1.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-device-2.2.native/usr/lib/libtiff.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 42e9b411a0a08b1a2054e51bf7c0b17050f3b584 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libexpat.so.1.5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libexpat.so.1.5.2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libexpat.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9f64ec1a3e01ae061a9cfa635d5de3b8071b0772 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libz.so.1.2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libz.so.1.2.5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/lib/libz.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e1b78cf2266d7488ddbfb793fb0d14b1ce331fd8 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/freetype2/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- 1 | #ifndef __FTCONFIG_H__MULTILIB 2 | #define __FTCONFIG_H__MULTILIB 3 | 4 | #include 5 | 6 | #if __WORDSIZE == 32 7 | # include "ftconfig-32.h" 8 | #elif __WORDSIZE == 64 9 | # include "ftconfig-64.h" 10 | #else 11 | # error "unexpected value for __WORDSIZE macro" 12 | #endif 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/freetype2/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- 1 | /* This is a generated file. */ 2 | FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) 3 | FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) 4 | FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) 5 | FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) 6 | FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) 7 | FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) 8 | FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) 9 | FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) 10 | FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) 11 | FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) 12 | FT_USE_MODULE( FT_Module_Class, autofit_module_class ) 13 | FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) 14 | FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) 15 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) 16 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) 17 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) 18 | FT_USE_MODULE( FT_Module_Class, psaux_module_class ) 19 | FT_USE_MODULE( FT_Module_Class, psnames_module_class ) 20 | /* EOF */ 21 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/freetype2/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 63c291af1270c8a1c4ba40388b000f0710ea38c6 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 42e7013147cfafe0a19f8173fb6c582e988674e4 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/include/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.3\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120922 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcares.so.2.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcares.so.2.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcrypto.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcrypto.so.1.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcrypto.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 81ca983a9939b3f3b2e404e66cb635bff6efce67 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcurl.so.4.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcurl.so.4.3.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libcurl.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | c54dc5d867f4cb4963a852fc04ceed6789b96767 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfontconfig.so.1.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfontconfig.so.1.5.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfontconfig.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 20463c499af04c056a7590604921123c612cbfc8 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfreetype.so.6.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfreetype.so.6.8.1 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libfreetype.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 84c7e3ac1bfdc497501cb87d11aaac9c72f31683 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libidn.so.11.5.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libidn.so.11.5.44 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libidn.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | afd4e7984713310f6eea5d2bc01caac899b0af74 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libjpeg.so.8.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libjpeg.so.8.0.2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libjpeg.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9e77dffdcc449cfbdb8e5605fdd426d1a27b7315 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libpng.so.3.50.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libpng.so.3.50.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libpng.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cf825522bd96911a2d4bc9a81e54a732a6ef864c -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libssl.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libssl.so.1.0.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libssl.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 508b8ffae1b36bd226db45d16ec1802ffdfb4922 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libtiff.so.5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libtiff.so.5.1.0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/tizen/rootstraps/tizen-emulator-2.2.native/usr/lib/libtiff.so.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 5014234cf92547e7e4782326d5b320e46e2f0eb1 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libpng/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 643b7d7658d92033567b857d7e4cee5f1e22ba6a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/glew32.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cbce7da7692ddd7eb16880ec7b05e0faa8139c1a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/glew32.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 03be6ad746e36147d633ec0e6a55e6bdb30a3a9d -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/iconv.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | df718829fc0141a05d8a2b2dee34b24a0f61bb2c -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/libcurl.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9f7be42cbdf2ecadd9209f4c0e1b0b9359bba4c8 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 8b248b13bee6428a3dd5c23d276c7d67d14a7c29 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3563d99402fdc14accccc23688caa88b545fc439 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/libtiff.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b93dbf63b6d3b716e3fa8d261ea7fda90117e4bf -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libraries/libwebp.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 57782b915d0ed9f5a96dabe430122d7d04dbff36 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/win32/libtiff/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120218 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/freetype/include/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | fe46d22978790a08d664c2e025b643179dfb4dd4 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libpng/libpng.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libpng/libpng_2013.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libpng/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | de0843aae589ec9df43c4beba5c62c08efbeb177 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/D3Dcompiler_46.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 61b79b8015191b64e95727dfb8d2e214fdc9d0a0 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4e823620540e418c71b5fb5c188f324f3eab0a65 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e63cb323c5ece94a5143b4aa9e3aeb4742fcb402 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e06115cb893d6fc249eae98ffea57883ee829b6c -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 93ae635c8f040b16f0f8cfab20d8e83ebc387dd5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d3a231becc89507e42a3a9001944124ebb0f9bf2 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Debug/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 36e08e8636b121e8dc2322c2bb797dfcfbd4d1a3 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d5efa7748da3443cedd043514115dbb0237cb507 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cd5781244869cfdb118ca1d8a4e197cca8aadcb3 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e7c466fa45c1367e63b7119e4c88343e1cb9c093 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e96be68baf263bae173e51d83d37d3aa3ca9ce71 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/ARM/Release/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/D3Dcompiler_46.dll.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b505aca5283c984be5b5c17ef109d0222eeed352 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 155f7ca7338f42b751b7ac8d0a831908f3f477b5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 54c4710ed46d57ac8f887ff5b0ca9b2e9255117e -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4ddb9e952394304bd5aae470eeb91214d2954790 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | b3340d02b60500fd15ce6a7f7fa58f17ea21a8fd -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 718dadadde28871a2a9711392d78a5336d52d78c -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Debug/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cce2fb157686d5467b2905a7bf8f37782f916e5a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cbb7ab05184d0478780d293d22f83daeb805e990 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | bc7db669bda0bc9c13c8d030eab635b033fd77d3 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 9232e6663a48262a2fa0f1d4e119f20c61831bea -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 5d168af866f617cb4a9a333c647c7e3b866727d1 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2012/Win32/Release/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | efff6d913b0ae4aa3b3e3e4875471608374efe0a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 4b925260e4e8c24b3c6100a287efe2dc38568076 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | fb71a4a1eb018a6aea8949221081516dec1bdd1b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 0f577d3c3acb4d9b0510da57fdc6ea71851a4784 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | e791bb72e02bb9e9d8d70d895a8822b9f8eeba02 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Debug/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | a2bd60bd84dafcd869c53b65c58be182bfa34446 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 1df50d736caef5eccce6b209ae715af8743508fe -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cc057283fcb8a26ed1360645cdda0121485064b5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | d0594bd30aac66855e495753c8d0e2ccd730bad5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | aa6ab1f3fe9246b532c6fe07565b48638a5cf09d -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/ARM/Release/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 96542a500aa226f23711e16404fb2a6b7a2805b4 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 7b7bf8eeef1281b19fdf0f099db7ed1a2e1f7382 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | bc3ee6577f608b447cb9e85af32e4511fd4ad3cb -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3445df5df09b2bb1d8c8ba7864cdc02b46f19c7c -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | edd64f4a2324aa76b6304ab0e5834b0c30e03213 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Debug/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 67304ebf94b104309fe61f4f7467fbddfd00ed08 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/freetype.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/freetype.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libjpeg.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 85714de7002eb25b510e8574254706328c76f0fe -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libjpeg.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libjpeg.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libpng.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | ce59c1f9b7c4ea3f281f7c84650f3b636b47a2c6 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libpng.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libpng.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 93205260633b4026acaa2c313aa9df66928f252a -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/libtiff.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3fdc5d5817c842b9ac2ff4dcc98f567ed8e8635b -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/zlib.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/platform/third_party/winrt/libraries/vs2013/Win32/Release/zlib.pri -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/libtiff/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120218 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/winrt/zlib/zlib_2013.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/freetype/include/freetype/freetype.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | fe46d22978790a08d664c2e025b643179dfb4dd4 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/lib/dotdot.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_CURL_DOTDOT_H 2 | #define HEADER_CURL_DOTDOT_H 3 | /*************************************************************************** 4 | * _ _ ____ _ 5 | * Project ___| | | | _ \| | 6 | * / __| | | | |_) | | 7 | * | (__| |_| | _ <| |___ 8 | * \___|\___/|_| \_\_____| 9 | * 10 | * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. 11 | * 12 | * This software is licensed as described in the file COPYING, which 13 | * you should have received as part of this distribution. The terms 14 | * are also available at http://curl.haxx.se/docs/copyright.html. 15 | * 16 | * You may opt to use, copy, modify, merge, publish, distribute and/or sell 17 | * copies of the Software, and permit persons to whom the Software is 18 | * furnished to do so, under the terms of the COPYING file. 19 | * 20 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 | * KIND, either express or implied. 22 | * 23 | ***************************************************************************/ 24 | char *Curl_dedotdotify(char *input); 25 | #endif 26 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/lib/ftp.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | abd70e070e8542192d45fa168689d9974f7d4a5e -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/lib/http.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 459b98bca692414f3eec9b54645260b8cc1a6668 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/lib/ssh.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 35cb20193c2711ecbfe7115bc043a80d4c427b95 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/lib/url.c.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 5903628c9dcd94be02506de05fe7fbbeeb423679 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libcurl/libcurl.h: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libpng/libpng.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libpng", "libpng.vcxproj", "{BECA859F-1CEE-41D4-B646-4DA69F74742B}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|ARM = Debug|ARM 9 | Debug|Win32 = Debug|Win32 10 | Release|ARM = Release|ARM 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Debug|ARM.ActiveCfg = Debug|ARM 15 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Debug|ARM.Build.0 = Debug|ARM 16 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Debug|Win32.ActiveCfg = Debug|Win32 17 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Debug|Win32.Build.0 = Debug|Win32 18 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Release|ARM.ActiveCfg = Release|ARM 19 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Release|ARM.Build.0 = Release|ARM 20 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Release|Win32.ActiveCfg = Release|Win32 21 | {BECA859F-1CEE-41D4-B646-4DA69F74742B}.Release|Win32.Build.0 = Release|Win32 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libpng/libpng.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libpng/png.h.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | de0843aae589ec9df43c4beba5c62c08efbeb177 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/arm/LibJPEG.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | cc278dc66bc7e052f632651b0cd0a8b955b20c46 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/arm/LibPNG.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 2c53439f03b256549faa0592cbb77814e1b9ac36 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/arm/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 22717b6401c2fe7aeb75d1192aba14715fc45b3d -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/arm/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 1f5c7508df3c2be7989b207907a2eea879ef74b5 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/arm/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 3bbb48915fd720815bf7cf207e9d64f8ed559f8e -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/x86/LibJPEG.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 49c74d198ee75df6ba76af7842b41ad2ca7f6135 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/x86/LibPNG.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 663da3e02b416df7f4099b00a13529bee942ee45 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/x86/freetype.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | dbc3cecd0449751e54bac6178d41d6c99fe489d4 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/x86/libtiff.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 8571d114677b6cd9e089b360f3488d8477ff8997 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libraries/x86/zlib.lib.REMOVED.git-id: -------------------------------------------------------------------------------- 1 | 0bb2cee2c44295cc16ce867aa7241bea7a3bdd53 -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libtiff/libtiff.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libtiff", "libtiff.vcxproj", "{B1F47411-C545-4624-845D-49612C549E0F}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|ARM = Debug|ARM 9 | Debug|Win32 = Debug|Win32 10 | Release|ARM = Release|ARM 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {B1F47411-C545-4624-845D-49612C549E0F}.Debug|ARM.ActiveCfg = Debug|ARM 15 | {B1F47411-C545-4624-845D-49612C549E0F}.Debug|ARM.Build.0 = Debug|ARM 16 | {B1F47411-C545-4624-845D-49612C549E0F}.Debug|Win32.ActiveCfg = Debug|Win32 17 | {B1F47411-C545-4624-845D-49612C549E0F}.Debug|Win32.Build.0 = Debug|Win32 18 | {B1F47411-C545-4624-845D-49612C549E0F}.Release|ARM.ActiveCfg = Release|ARM 19 | {B1F47411-C545-4624-845D-49612C549E0F}.Release|ARM.Build.0 = Release|ARM 20 | {B1F47411-C545-4624-845D-49612C549E0F}.Release|Win32.ActiveCfg = Release|Win32 21 | {B1F47411-C545-4624-845D-49612C549E0F}.Release|Win32.Build.0 = Release|Win32 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/libtiff/tiffvers.h: -------------------------------------------------------------------------------- 1 | #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.0.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc." 2 | /* 3 | * This define can be used in code that requires 4 | * compilation-related definitions specific to a 5 | * version or versions of the library. Runtime 6 | * version checking should be done based on the 7 | * string returned by TIFFGetVersion. 8 | */ 9 | #define TIFFLIB_VERSION 20120218 10 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/zlib/zlib.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "zlib.vcxproj", "{F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|ARM = Debug|ARM 9 | Debug|Win32 = Debug|Win32 10 | Release|ARM = Release|ARM 11 | Release|Win32 = Release|Win32 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Debug|ARM.ActiveCfg = Debug|ARM 15 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Debug|ARM.Build.0 = Debug|ARM 16 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Debug|Win32.ActiveCfg = Debug|Win32 17 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Debug|Win32.Build.0 = Debug|Win32 18 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Release|ARM.ActiveCfg = Release|ARM 19 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Release|ARM.Build.0 = Release|ARM 20 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Release|Win32.ActiveCfg = Release|Win32 21 | {F7D6B0DD-9ADF-4930-8F4B-E4F451E28A74}.Release|Win32.Build.0 = Release|Win32 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | EndGlobal 27 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/third_party/wp8/zlib/zlib.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/platform/win32/CCPlatformDefine.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCPLATFORMDEFINE_H__ 2 | #define __CCPLATFORMDEFINE_H__ 3 | 4 | #ifdef __MINGW32__ 5 | #include 6 | #endif 7 | 8 | #ifndef CC_DLL 9 | #if defined(_USRDLL) 10 | #define CC_DLL __declspec(dllexport) 11 | #else // use a DLL library 12 | #define CC_DLL __declspec(dllimport) 13 | #endif 14 | #endif 15 | 16 | #include 17 | 18 | #if CC_DISABLE_ASSERT > 0 19 | #define CC_ASSERT(cond) 20 | #else 21 | #define CC_ASSERT(cond) assert(cond) 22 | #endif 23 | #define CC_UNUSED_PARAM(unusedparam) (void)unusedparam 24 | 25 | /* Define NULL pointer value */ 26 | #ifndef NULL 27 | #ifdef __cplusplus 28 | #define NULL 0 29 | #else 30 | #define NULL ((void *)0) 31 | #endif 32 | #endif 33 | 34 | 35 | 36 | #endif /* __CCPLATFORMDEFINE_H__*/ 37 | -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/robtop/glfw/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/cocos2dx/robtop/glfw/glfw3.lib -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/robtop/mouse_dispatcher/CCMouseDelegate.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCMOUSE_DELEGATE_H__ 2 | #define __CCMOUSE_DELEGATE_H__ 3 | 4 | #include "ccMacros.h" 5 | #include "cocoa/CCObject.h" 6 | 7 | RT_ADD( 8 | NS_CC_BEGIN 9 | 10 | class CC_DLL CCMouseDelegate 11 | { 12 | public: 13 | CCMouseDelegate(const CCMouseDelegate&); 14 | CCMouseDelegate(); 15 | 16 | CCMouseDelegate& operator=(const CCMouseDelegate&); 17 | 18 | virtual void rightKeyDown(); 19 | 20 | virtual void rightKeyUp(); 21 | 22 | virtual void scrollWheel(float x, float y); 23 | 24 | //pretty certain there's no fields, based on initializer 25 | }; 26 | 27 | class CC_DLL CCMouseHandler : public CCObject 28 | { 29 | public: 30 | CCMouseHandler(const CCMouseHandler&); 31 | CCMouseHandler(); 32 | virtual ~CCMouseHandler(); 33 | 34 | CCMouseHandler& operator=(const CCMouseHandler&); 35 | 36 | CCMouseDelegate* getDelegate(); 37 | 38 | static CCMouseHandler* handlerWithDelegate(CCMouseDelegate* pDelegate); 39 | 40 | virtual bool initWithDelegate(CCMouseDelegate* pDelegate); 41 | 42 | void setDelegate(CCMouseDelegate* pDelegate); 43 | 44 | protected: 45 | CCMouseDelegate* m_pDelegate; 46 | }; 47 | 48 | NS_CC_END 49 | ) 50 | 51 | #endif -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/robtop/mouse_dispatcher/CCMouseDispatcher.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCMOUSE_DISPATCHER_H__ 2 | #define __CCMOUSE_DISPATCHER_H__ 3 | 4 | #include "CCMouseDelegate.h" 5 | #include "cocoa/CCArray.h" 6 | 7 | RT_ADD( 8 | NS_CC_BEGIN 9 | 10 | class CC_DLL CCMouseDispatcher : public CCObject 11 | { 12 | public: 13 | CCMouseDispatcher(); 14 | CCMouseDispatcher(const CCMouseDispatcher&); 15 | virtual ~CCMouseDispatcher(); 16 | 17 | CCMouseDispatcher& operator=(const CCMouseDispatcher&); 18 | 19 | void addDelegate(CCMouseDelegate* pDelegate); 20 | 21 | void removeDelegate(CCMouseDelegate* pDelegate); 22 | 23 | void forceAddDelegate(CCMouseDelegate* pDelegate); 24 | 25 | void forceRemoveDelegate(CCMouseDelegate* pDelegate); 26 | 27 | bool dispatchScrollMSG(float x, float y); 28 | 29 | protected: 30 | CCArray* m_pDelegates; 31 | //there's more here, check the initializer 32 | }; 33 | 34 | NS_CC_END 35 | ) 36 | 37 | #endif -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/robtop/scene_nodes/CCSceneTransitionDelegate.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCSCENE_TRANSITION_DELEGATE_H__ 2 | #define __CCSCENE_TRANSITION_DELEGATE_H__ 3 | 4 | #include "ccMacros.h" 5 | 6 | RT_ADD( 7 | NS_CC_BEGIN 8 | 9 | class CC_DLL CCSceneTransitionDelegate 10 | { 11 | CCSceneTransitionDelegate(const CCSceneTransitionDelegate&); 12 | CCSceneTransitionDelegate(); 13 | 14 | CCSceneTransitionDelegate& operator=(const CCSceneTransitionDelegate&); 15 | 16 | virtual void sceneWillResume(void); 17 | }; 18 | 19 | NS_CC_END 20 | ) 21 | 22 | 23 | #endif //__CCSCENE_TRANSITION_DELEGATE_H__ -------------------------------------------------------------------------------- /libs/cocos-headers/cocos2dx/shaders/ccShaderEx_SwitchMask_frag.h: -------------------------------------------------------------------------------- 1 | " \n\ 2 | #ifdef GL_ES \n\ 3 | precision lowp float; \n\ 4 | #endif \n\ 5 | \n\ 6 | varying vec4 v_fragmentColor; \n\ 7 | varying vec2 v_texCoord; \n\ 8 | uniform sampler2D u_texture; \n\ 9 | uniform sampler2D u_mask; \n\ 10 | \n\ 11 | void main() \n\ 12 | { \n\ 13 | vec4 texColor = texture2D(u_texture, v_texCoord); \n\ 14 | vec4 maskColor = texture2D(u_mask, v_texCoord); \n\ 15 | vec4 finalColor = vec4(texColor.r, texColor.g, texColor.b, maskColor.a * texColor.a); \n\ 16 | gl_FragColor = v_fragmentColor * finalColor; \n\ 17 | } \n\ 18 | "; 19 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCBFileLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCBFILELOADER_H_ 2 | #define _CCB_CCBFILELOADER_H_ 3 | 4 | #include "CCNodeLoader.h" 5 | #include "CCBReader.h" 6 | 7 | NS_CC_EXT_BEGIN 8 | 9 | /* Forward declaration. */ 10 | class CCBReader; 11 | /** 12 | * @js NA 13 | * @lua NA 14 | */ 15 | class CCBFileLoader : public CCNodeLoader { 16 | public: 17 | virtual ~CCBFileLoader() {}; 18 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCBFileLoader, loader); 19 | 20 | protected: 21 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCBFile); 22 | 23 | virtual void onHandlePropTypeCCBFile(CCNode * pNode, CCNode * pParent, const char * pPropertyName, CCNode * pCCBFileNode, CCBReader * pCCBReader); 24 | }; 25 | 26 | NS_CC_EXT_END 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCBKeyframe.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCB_KEYFRAME_H__ 2 | #define __CCB_KEYFRAME_H__ 3 | 4 | #include "cocos2d.h" 5 | #include "ExtensionMacros.h" 6 | 7 | NS_CC_EXT_BEGIN 8 | /** 9 | * @js NA 10 | * @lua NA 11 | */ 12 | class CCBKeyframe : public CCObject 13 | { 14 | private: 15 | CCObject *mValue; 16 | float mTime; 17 | int mEasingType; 18 | float mEasingOpt; 19 | 20 | public: 21 | CCBKeyframe(); 22 | ~CCBKeyframe(); 23 | 24 | CCObject* getValue(); 25 | void setValue(CCObject *pValue); // retain 26 | 27 | float getTime(); 28 | void setTime(float fTime); 29 | 30 | int getEasingType(); 31 | void setEasingType(int nEasingType); 32 | 33 | float getEasingOpt(); 34 | void setEasingOpt(float fEasingOpt); 35 | }; 36 | 37 | NS_CC_EXT_END 38 | 39 | #endif // __CCB_KEYFRAME_H__ 40 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCBSequence.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCB_CCSEQUENCE_H__ 2 | #define __CCB_CCSEQUENCE_H__ 3 | 4 | #include 5 | #include "cocos2d.h" 6 | #include "ExtensionMacros.h" 7 | #include "CCBSequenceProperty.h" 8 | 9 | NS_CC_EXT_BEGIN 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCBSequence : public CCObject 15 | { 16 | private: 17 | float mDuration; 18 | std::string mName; 19 | int mSequenceId; 20 | int mChainedSequenceId; 21 | CCBSequenceProperty* mCallbackChannel; 22 | CCBSequenceProperty* mSoundChannel; 23 | 24 | public: 25 | CCBSequence(); 26 | ~CCBSequence(); 27 | float getDuration(); 28 | void setDuration(float fDuration); 29 | 30 | CCBSequenceProperty* getCallbackChannel(); 31 | void setCallbackChannel(CCBSequenceProperty* callbackChannel); 32 | 33 | CCBSequenceProperty* getSoundChannel(); 34 | void setSoundChannel(CCBSequenceProperty* soundChannel); 35 | 36 | const char* getName(); 37 | void setName(const char *pName); 38 | 39 | int getSequenceId(); 40 | void setSequenceId(int nSequenceId); 41 | 42 | int getChainedSequenceId(); 43 | void setChainedSequenceId(int nChainedSequenceId); 44 | }; 45 | 46 | 47 | NS_CC_EXT_END 48 | 49 | 50 | #endif // __CCB_CCSEQUENCE_H__ 51 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCBSequenceProperty.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCB_SEQUENCE_PROPERTY_H__ 2 | #define __CCB_SEQUENCE_PROPERTY_H__ 3 | 4 | #include "cocos2d.h" 5 | #include "ExtensionMacros.h" 6 | #include "CCBKeyframe.h" 7 | 8 | NS_CC_EXT_BEGIN 9 | /** 10 | * @js NA 11 | * @lua NA 12 | */ 13 | class CCBSequenceProperty : public CCObject 14 | { 15 | private: 16 | std::string mName; 17 | int mType; 18 | CCArray *mKeyframes; 19 | 20 | public: 21 | CCBSequenceProperty(); 22 | ~CCBSequenceProperty(); 23 | 24 | virtual bool init(); 25 | 26 | const char* getName(); 27 | void setName(const char* pName); 28 | 29 | int getType(); 30 | void setType(int nType); 31 | 32 | CCArray* getKeyframes(); 33 | }; 34 | 35 | NS_CC_EXT_END 36 | 37 | #endif // __CCB_SEQUENCE_PROPERTY_H__ 38 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCControlLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCCONTROLLOADER_H_ 2 | #define _CCB_CCCONTROLLOADER_H_ 3 | 4 | #include "CCNodeLoader.h" 5 | #include "../GUI/CCControlExtension/CCControl.h" 6 | 7 | NS_CC_EXT_BEGIN 8 | 9 | /* Forward declaration. */ 10 | class CCBReader; 11 | /** 12 | * @js NA 13 | * @lua NA 14 | */ 15 | class CCControlLoader : public CCNodeLoader { 16 | public: 17 | virtual ~CCControlLoader() {}; 18 | 19 | protected: 20 | CCB_PURE_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCControl); 21 | 22 | virtual void onHandlePropTypeBlockCCControl(CCNode * pNode, CCNode * pParent, const char * pPropertyName, BlockCCControlData * pBlockCCControlData, CCBReader * pCCBReader); 23 | virtual void onHandlePropTypeCheck(CCNode * pNode, CCNode * pParent, const char * pPropertyName, bool pCheck, CCBReader * pCCBReader); 24 | }; 25 | 26 | NS_CC_EXT_END 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCData.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef __CCB_CCDATA_H__ 3 | #define __CCB_CCDATA_H__ 4 | 5 | #include "cocos2d.h" 6 | #include "ExtensionMacros.h" 7 | 8 | NS_CC_EXT_BEGIN 9 | /** 10 | * @js NA 11 | * @lua NA 12 | */ 13 | class CCData : public CCObject 14 | { 15 | public: 16 | CCData(unsigned char *pBytes, const unsigned long nSize); 17 | CCData(CCData *pData); 18 | ~CCData(); 19 | 20 | unsigned char* getBytes(); 21 | unsigned long getSize(); 22 | 23 | private: 24 | unsigned char* m_pBytes; 25 | unsigned long m_nSize; 26 | }; 27 | 28 | NS_CC_EXT_END 29 | 30 | #endif // __CCB_CCDATA_H__ 31 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCLayerColorLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCLAYERCOLORLOADER_H_ 2 | #define _CCB_CCLAYERCOLORLOADER_H_ 3 | 4 | #include "CCLayerLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCLayerColorLoader : public CCLayerLoader { 15 | public: 16 | virtual ~CCLayerColorLoader() {}; 17 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCLayerColorLoader, loader); 18 | 19 | protected: 20 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCLayerColor); 21 | 22 | virtual void onHandlePropTypeColor3(CCNode * pNode, CCNode * pParent, const char * pPropertyName, ccColor3B pCCColor3B, CCBReader * pCCBReader); 23 | virtual void onHandlePropTypeByte(CCNode * pNode, CCNode * pParent, const char * pPropertyName, unsigned char pByte, CCBReader * pCCBReader); 24 | virtual void onHandlePropTypeBlendFunc(CCNode * pNode, CCNode * pParent, const char * pPropertyName, ccBlendFunc pCCBlendFunc, CCBReader * pCCBReader); 25 | }; 26 | 27 | NS_CC_EXT_END 28 | 29 | #endif 30 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCLayerGradientLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCLAYERGRADIENTLOADER_H_ 2 | #define _CCB_CCLAYERGRADIENTLOADER_H_ 3 | 4 | #include "CCLayerLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCLayerGradientLoader : public CCLayerLoader { 15 | public: 16 | virtual ~CCLayerGradientLoader() {}; 17 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCLayerGradientLoader, loader); 18 | 19 | protected: 20 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCLayerGradient); 21 | 22 | virtual void onHandlePropTypeColor3(CCNode * pNode, CCNode * pParent, const char * pPropertyName, ccColor3B pCCColor3B, CCBReader * pCCBReader); 23 | virtual void onHandlePropTypeByte(CCNode * pNode, CCNode * pParent, const char * pPropertyName, unsigned char pByte, CCBReader * pCCBReader); 24 | virtual void onHandlePropTypePoint(CCNode * pNode, CCNode * pParent, const char * pPropertyName, CCPoint pPoint, CCBReader * pCCBReader); 25 | virtual void onHandlePropTypeBlendFunc(CCNode * pNode, CCNode * pParent, const char * pPropertyName, ccBlendFunc pCCBlendFunc, CCBReader * pCCBReader); 26 | }; 27 | 28 | NS_CC_EXT_END 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCLayerLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCLAYERLOADER_H_ 2 | #define _CCB_CCLAYERLOADER_H_ 3 | 4 | #include "CCNodeLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCLayerLoader : public CCNodeLoader { 15 | public: 16 | virtual ~CCLayerLoader() {}; 17 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCLayerLoader, loader); 18 | 19 | protected: 20 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCLayer); 21 | 22 | virtual void onHandlePropTypeCheck(CCNode * pNode, CCNode * pParent, const char * pPropertyName, bool pCheck, CCBReader * pCCBReader); 23 | }; 24 | 25 | NS_CC_EXT_END 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCMenuItemImageLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCMENUITEMIMAGELOADER_H_ 2 | #define _CCB_CCMENUITEMIMAGELOADER_H_ 3 | 4 | #include "CCMenuItemLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCMenuItemImageLoader : public CCMenuItemLoader { 15 | public: 16 | virtual ~CCMenuItemImageLoader() {}; 17 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCMenuItemImageLoader, loader); 18 | 19 | protected: 20 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCMenuItemImage); 21 | 22 | virtual void onHandlePropTypeSpriteFrame(CCNode * pNode, CCNode * pParent, const char * pPropertyName, CCSpriteFrame * pCCSpriteFrame, CCBReader * pCCBReader); 23 | }; 24 | 25 | NS_CC_EXT_END 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCMenuItemLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCMENUITEMLOADER_H_ 2 | #define _CCB_CCMENUITEMLOADER_H_ 3 | 4 | #include "CCLayerLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCMenuItemLoader : public CCNodeLoader { 15 | public: 16 | virtual ~CCMenuItemLoader() {}; 17 | 18 | protected: 19 | CCB_PURE_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCMenuItem); 20 | 21 | virtual void onHandlePropTypeBlock(CCNode * pNode, CCNode * pParent, const char * pPropertyName, BlockData * pBlockData, CCBReader * pCCBReader); 22 | virtual void onHandlePropTypeCheck(CCNode * pNode, CCNode * pParent, const char * pPropertyName, bool pCheck, CCBReader * pCCBReader); 23 | }; 24 | 25 | NS_CC_EXT_END 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCMenuLoader.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCMENULOADER_H_ 2 | #define _CCB_CCMENULOADER_H_ 3 | 4 | #include "CCLayerLoader.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | 8 | /* Forward declaration. */ 9 | class CCBReader; 10 | /** 11 | * @js NA 12 | * @lua NA 13 | */ 14 | class CCMenuLoader : public CCLayerLoader { 15 | public: 16 | virtual ~CCMenuLoader() {}; 17 | CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCMenuLoader, loader); 18 | 19 | protected: 20 | CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(CCMenu); 21 | }; 22 | 23 | NS_CC_EXT_END 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCNode+CCBRelativePositioning.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCB_CCNODE_RELATIVEPOSITIONING_H__ 2 | #define __CCB_CCNODE_RELATIVEPOSITIONING_H__ 3 | 4 | #include "cocos2d.h" 5 | #include "ExtensionMacros.h" 6 | 7 | NS_CC_EXT_BEGIN 8 | 9 | extern CCPoint getAbsolutePosition(const CCPoint &pt, int nType, const CCSize &containerSize, const char *pPropName); 10 | 11 | extern void setRelativeScale(CCNode *pNode, float fScaleX, float fScaleY, int nType, const char* pPropName); 12 | 13 | NS_CC_EXT_END 14 | 15 | #endif // __CCB_CCNODE_RELATIVEPOSITIONING_H__ 16 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CCBReader/CCNodeLoaderListener.h: -------------------------------------------------------------------------------- 1 | #ifndef _CCB_CCNODELOADERLISTENER_H_ 2 | #define _CCB_CCNODELOADERLISTENER_H_ 3 | 4 | #include "cocos2d.h" 5 | 6 | NS_CC_EXT_BEGIN 7 | /** 8 | * @js NA 9 | * @lua NA 10 | */ 11 | class CCNodeLoaderListener { 12 | public: 13 | virtual ~CCNodeLoaderListener() {}; 14 | 15 | virtual void onNodeLoaded(CCNode * pNode, CCNodeLoader * pNodeLoader) = 0; 16 | }; 17 | 18 | NS_CC_EXT_END 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CocoStudio/Json/rapidjson/filestream.h: -------------------------------------------------------------------------------- 1 | #ifndef RAPIDJSON_FILESTREAM_H_ 2 | #define RAPIDJSON_FILESTREAM_H_ 3 | 4 | #include 5 | 6 | namespace rapidjson { 7 | 8 | //! Wrapper of C file stream for input or output. 9 | /*! 10 | This simple wrapper does not check the validity of the stream. 11 | \implements Stream 12 | */ 13 | class FileStream { 14 | public: 15 | typedef char Ch; //!< Character type. Only support char. 16 | 17 | FileStream(FILE* fp) : fp_(fp), count_(0) { Read(); } 18 | char Peek() const { return current_; } 19 | char Take() { char c = current_; Read(); return c; } 20 | size_t Tell() const { return count_; } 21 | void Put(char c) { fputc(c, fp_); } 22 | 23 | // Not implemented 24 | char* PutBegin() { return 0; } 25 | size_t PutEnd(char*) { return 0; } 26 | 27 | private: 28 | void Read() { 29 | RAPIDJSON_ASSERT(fp_ != 0); 30 | int c = fgetc(fp_); 31 | if (c != EOF) { 32 | current_ = (char)c; 33 | count_++; 34 | } 35 | else 36 | current_ = '\0'; 37 | } 38 | 39 | FILE* fp_; 40 | char current_; 41 | size_t count_; 42 | }; 43 | 44 | } // namespace rapidjson 45 | 46 | #endif // RAPIDJSON_FILESTREAM_H_ 47 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/CocoStudio/Json/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- 1 | #ifndef RAPIDJSON_INTERNAL_STRFUNC_H_ 2 | #define RAPIDJSON_INTERNAL_STRFUNC_H_ 3 | 4 | namespace rapidjson { 5 | namespace internal { 6 | 7 | //! Custom strlen() which works on different character types. 8 | /*! \tparam Ch Character type (e.g. char, wchar_t, short) 9 | \param s Null-terminated input string. 10 | \return Number of characters in the string. 11 | \note This has the same semantics as strlen(), the return value is not number of Unicode codepoints. 12 | */ 13 | template 14 | inline SizeType StrLen(const Ch* s) { 15 | const Ch* p = s; 16 | while (*p != '\0') 17 | ++p; 18 | return SizeType(p - s); 19 | } 20 | 21 | } // namespace internal 22 | } // namespace rapidjson 23 | 24 | #endif // RAPIDJSON_INTERNAL_STRFUNC_H_ 25 | -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/GUI/CCControlExtension/CCControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/extensions/GUI/CCControlExtension/CCControl.h -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/extensions/GUI/CCControlExtension/CCControlSaturationBrightnessPicker.h -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/GUI/CCControlExtension/CCControlSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/extensions/GUI/CCControlExtension/CCControlSlider.h -------------------------------------------------------------------------------- /libs/cocos-headers/extensions/libExtensions.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAndyHD3/SoundEffects/0f10976500e6ddb79dd19d6302660715ceb4fb03/libs/cocos-headers/extensions/libExtensions.lib -------------------------------------------------------------------------------- /libs/cocos-headers/xmake.lua: -------------------------------------------------------------------------------- 1 | target("cocos-headers") --create target cocos headers 2 | set_kind("headeronly") --set header only because it doesnt build any files 3 | add_includedirs( 4 | "cocos2dx", 5 | "cocos2dx/include", 6 | "cocos2dx/kazmath/include", 7 | "cocos2dx/platform/win32", 8 | "cocos2dx/platform/third_party/win32", 9 | "cocos2dx/platform/third_party/win32/OGLES", 10 | "extensions", 11 | {public = true} --by setting public it applies to any target that adds this target as a dependency 12 | ) 13 | add_linkdirs("cocos2dx", "extensions", {public = true}) 14 | add_links("libcocos2d", "libExtensions", {public = true}) 15 | target_end() --optional -------------------------------------------------------------------------------- /libs/gd.h/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 poweredbypie, mat, HJfod and others 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /libs/gd.h/README.md: -------------------------------------------------------------------------------- 1 | # Deprecated 2 | 3 | This library has been deprecated in favor of [Geode](https://github.com/geode-sdk/geode), a framework that bundles GD headers along with Cocos2d and lots of other modding utilities. All of my mods will be ported over to Geode, and any new ones will be built on it; and I would highly recommend you do so too, as Geode's main purpose is fixing mod incompatabilities, and mods made with gd.h are not going to work alongside Geode mods. More info about Geode is at . 4 | 5 | # gd.h 6 | 7 | Windows headers for Geometry Dash. Originally copied from pie's textureldr. 8 | 9 | # Usage 10 | 11 | * This fork is dependant on [cocos-headers](https://github.com/HJfod/cocos-headers). CappuccinoSDK is **too outdated & incomplete** to be compatible with this fork of GD.h. 12 | 13 | * Certain compile settings can and will mess up some of these headers. **Recommended compile settings are:** 14 | - 32-bit 15 | - Release mode, maximum optimization for speed (o2) 16 | 17 | * You need to add both the `include/` directory and the root `gd.h` directory in your include path for this to work. 18 | 19 | # Contribution 20 | 21 | * If you'd like to contribute, create a pull request. 22 | 23 | -------------------------------------------------------------------------------- /libs/gd.h/achievement_nodes/AchievementBar.h: -------------------------------------------------------------------------------- 1 | #ifndef __ACHIEVEMENTBAR_H__ 2 | #define __ACHIEVEMENTBAR_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | #pragma runtime_checks("s", off) 8 | class GDH_DLL AchievementBar : public cocos2d::CCNodeRGBA { 9 | protected: 10 | PAD(0x24); 11 | 12 | public: 13 | static AchievementBar* create(const char* title, 14 | const char* desc, const char* icon, bool quest) { 15 | auto pRet = reinterpret_cast( 17 | base + 0x3B120 18 | )(title, desc, icon, quest); 19 | __asm add esp, 0x8 20 | return pRet; 21 | } 22 | }; 23 | #pragma runtime_checks("s", restore) 24 | } 25 | 26 | #endif -------------------------------------------------------------------------------- /libs/gd.h/achievement_nodes/AchievementNotifier.h: -------------------------------------------------------------------------------- 1 | #ifndef __ACHIEVEMENTNOTIFIER_H__ 2 | #define __ACHIEVEMENTNOTIFIER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class AchievementBar; 9 | 10 | class GDH_DLL AchievementNotifier : public cocos2d::CCNode { 11 | protected: 12 | cocos2d::CCScene* m_pCurrentScene; 13 | cocos2d::CCArray* m_pQueue; 14 | AchievementBar* m_pCurrentAchievement; 15 | 16 | public: 17 | static AchievementNotifier* sharedState() { 18 | return reinterpret_cast( 19 | base + 0xFC90 20 | )(); 21 | } 22 | void showNextAchievement() { 23 | return reinterpret_cast( 24 | base + 0xFD60 25 | )(this); 26 | } 27 | //this is inlined on win32 so let's reconstruct it 28 | void notifyAchievement(const char* title, const char* desc, const char* icon, bool quest) { 29 | m_pQueue->addObject(AchievementBar::create(title, desc, icon, quest)); 30 | if (!m_pCurrentAchievement) { 31 | this->showNextAchievement(); 32 | } 33 | } 34 | }; 35 | } 36 | 37 | #endif -------------------------------------------------------------------------------- /libs/gd.h/actions/CCCircleWave.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCCIRCLEWAVE_H__ 2 | #define __CCCIRCLEWAVE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | #pragma runtime_checks("s", off) 8 | class GDH_DLL CCCircleWave : public cocos2d::CCNode { 9 | protected: 10 | cocos2d::CCArray* m_pArray; //idk what this is tho 11 | PAD(4); 12 | float m_fFrom1; //? 13 | float m_fFrom2; //? 14 | cocos2d::ccColor3B m_cColor; 15 | cocos2d::CCPoint m_obUnknown; 16 | //more that im too lazy to figure out lol 17 | 18 | public: 19 | static CCCircleWave* create(bool fade1, bool fade2, float from, float to, float duration) { 20 | __asm { 21 | movss xmm0, from 22 | movss xmm1, to 23 | movss xmm2, duration 24 | } 25 | return reinterpret_cast( 26 | base + 0x16C00 27 | )(fade1, fade2); 28 | } 29 | void setColor(cocos2d::ccColor3B color) { m_cColor = color; } 30 | void followObject(cocos2d::CCNode* obj, bool unk) { 31 | reinterpret_cast(base + 0x16f20)(this, obj, unk); 32 | } 33 | }; 34 | #pragma runtime_checks("s", restore) 35 | } 36 | 37 | #endif -------------------------------------------------------------------------------- /libs/gd.h/audio_nodes/FMODSound.h: -------------------------------------------------------------------------------- 1 | #ifndef __FMODSOUND_H__ 2 | #define __FMODSOUND_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL FMODSound : public cocos2d::CCNode { 8 | public: 9 | FMOD::Sound* m_pSound; 10 | }; 11 | } 12 | 13 | #endif -------------------------------------------------------------------------------- /libs/gd.h/cell_nodes/GJComment.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJCOMMENT_H__ 2 | #define __GJCOMMENT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class TableViewCell; 8 | 9 | class GDH_DLL GJComment : public cocos2d::CCNode { 10 | public: 11 | std::string m_sCommentString; 12 | PAD(0x18) 13 | int m_nCommentID; 14 | PAD(4) 15 | int m_nLikeCount; 16 | PAD(8) 17 | int m_nAccountID; 18 | std::string m_sUploadDate; 19 | 20 | static GJComment* create(cocos2d::CCDictionary* dict) { 21 | return reinterpret_cast( 22 | gd::base + 0xc3740 23 | )(dict); 24 | } 25 | }; 26 | 27 | class GDH_DLL CommentCell : public gd::TableViewCell { 28 | public: 29 | PAD(0x4); 30 | cocos2d::CCSprite* m_pIconSprite; 31 | cocos2d::CCLabelBMFont* m_pLikeLabel; 32 | GJComment* m_pComment; 33 | PAD(0x4); 34 | }; 35 | } 36 | 37 | #endif 38 | -------------------------------------------------------------------------------- /libs/gd.h/include/GDProtocols.h: -------------------------------------------------------------------------------- 1 | #ifndef __GDPROTOCOLS_H__ 2 | #define __GDPROTOCOLS_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class FLAlertLayer; 9 | 10 | class GDH_DLL FLAlertLayerProtocol { 11 | public: 12 | virtual void FLAlert_Clicked(gd::FLAlertLayer*, bool btn2) {}; 13 | }; 14 | } 15 | 16 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CCBlockLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCBLOCKLAYER_H__ 2 | #define __CCBLOCKLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CCBlockLayer : public cocos2d::CCLayerColor { 8 | protected: 9 | bool m_bUnknown; 10 | bool m_bUnknown2; 11 | }; 12 | } 13 | 14 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CCNodeContainer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCNODECONTAINER_H__ 2 | #define __CCNODECONTAINER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CCNodeContainer : public cocos2d::CCNode { 8 | protected: 9 | // literally no extra fields or anything, just 10 | // these 3 methods 11 | 12 | bool init() override { 13 | return reinterpret_cast( 14 | base + 0x33b40 15 | )(this); 16 | } 17 | 18 | public: 19 | void visit() override { 20 | reinterpret_cast( 21 | base + 0x112420 22 | )(this); 23 | } 24 | 25 | static CCNodeContainer* create() { 26 | return reinterpret_cast( 27 | base + 0x112370 28 | )(); 29 | } 30 | }; 31 | } 32 | 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/ChallengesPage.h: -------------------------------------------------------------------------------- 1 | #ifndef __CHALLENGESPAGE_H__ 2 | #define __CHALLENGESPAGE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class ChallengesPage : public FLAlertLayer { 8 | public: 9 | static ChallengesPage* create() { 10 | return reinterpret_cast( 11 | base + 0x3e050 12 | )(); 13 | } 14 | }; 15 | } 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CreateGuidelinesLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CREATEGUIDELINESLAYER_H__ 2 | #define __CREATEGUIDELINESLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CreateGuidelinesLayer : public FLAlertLayer, FLAlertLayerProtocol { 8 | public: 9 | PAD(36) 10 | std::string m_sGuidelineString; 11 | 12 | void onStop(CCObject* pSender) { 13 | reinterpret_cast( 16 | base + 0x4d2c0 17 | )(this, pSender); 18 | } 19 | }; 20 | } 21 | 22 | #endif 23 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CreatorLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CREATORLAYER_H__ 2 | #define __CREATORLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CreatorLayer : public cocos2d::CCLayer { 8 | public: 9 | static CreatorLayer* create() { 10 | return reinterpret_cast( 11 | base + 0x4dda0 12 | )(); 13 | } 14 | }; 15 | } 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CustomSongLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CUSTOMSONGLAYER_H__ 2 | #define __CUSTOMSONGLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class FLAlertLayer; 8 | class FLAlertLayerProtocol; 9 | class TextInputDelegate; 10 | class GJDropDownLayerDelegate; 11 | class LevelSettingsObject; 12 | class CCTextInputNode; 13 | class CustomSongWidget; 14 | class LevelSettingsLayer; 15 | class SongInfoObject; 16 | 17 | class GDH_DLL CustomSongLayer : public FLAlertLayer, FLAlertLayerProtocol, TextInputDelegate, GJDropDownLayerDelegate { 18 | public: 19 | LevelSettingsObject* m_levelSettings; 20 | CCTextInputNode* m_songIDInput; 21 | CustomSongWidget* m_songWidget; 22 | LevelSettingsLayer* m_levelSettingsLayer; 23 | }; 24 | } 25 | 26 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/CustomSongWidget.h: -------------------------------------------------------------------------------- 1 | #ifndef __CUSTOMSONGWIDGET_H__ 2 | #define __CUSTOMSONGWIDGET_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class FLAlertLayer; 8 | class FLAlertLayerProtocol; 9 | class SongInfoObject; 10 | 11 | class GDH_DLL CustomSongWidget : public cocos2d::CCNode, MusicDownloadDelegate, FLAlertLayerProtocol { 12 | public: 13 | SongInfoObject* m_songInfo; 14 | PAD(0x1C); 15 | CCMenuItemSpriteExtra *m_pDownloadBtn; 16 | PAD(0x30); 17 | 18 | void updateSongObject(SongInfoObject* song) { 19 | reinterpret_cast(base + 0x69280)(this, song); 20 | } 21 | 22 | virtual void FLAlert_Clicked(FLAlertLayer*, bool) {} 23 | // too lazy to type out all of them 24 | virtual void loadSongInfoFinished(SongInfoObject*) {} 25 | }; 26 | } 27 | 28 | #endif 29 | 30 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/DailyLevelPage.h: -------------------------------------------------------------------------------- 1 | #ifndef __DAILYLEVELPAGE_H__ 2 | #define __DAILYLEVELPAGE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL DailyLevelPage : public FLAlertLayer { 8 | public: 9 | static DailyLevelPage* create(bool weekly) { 10 | return reinterpret_cast( 11 | base + 0x6a860 12 | )(weekly); 13 | } 14 | }; 15 | } 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/DialogLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __DIALOGLAYER_H__ 2 | #define __DIALOGLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL DialogLayer : public cocos2d::CCLayerColor { 8 | public: 9 | char pad1[0x8]; 10 | cocos2d::CCLayer *m_pLayer; 11 | cocos2d::CCLabelBMFont *m_pTitle; 12 | TextArea *m_pDialog; 13 | cocos2d::CCSprite *m_pIcon; 14 | cocos2d::CCArray *m_pDialogObjects; 15 | char PAD2[0X4]; 16 | cocos2d::CCSprite *m_pChatBtn; 17 | bool m_bUnk; 18 | char m_bCanSkip; 19 | char PAD3[0x2]; 20 | DWORD m_pUnk; 21 | char PAD4[0x8]; 22 | }; 23 | } 24 | 25 | #endif 26 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/GJListLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJLISTLAYER_H__ 2 | #define __GJLISTLAYER_H__ 3 | 4 | #include "gd.h" 5 | 6 | namespace gd { 7 | #pragma runtime_checks("s", off) 8 | class GDH_DLL GJListLayer : public cocos2d::CCLayerColor { 9 | public: 10 | BoomListView* m_pListView; 11 | 12 | public: 13 | static GJListLayer* create( 14 | BoomListView* list, 15 | const char* title, 16 | cocos2d::ccColor4B color, 17 | float width, 18 | float height 19 | ) { 20 | __asm movss xmm3, width 21 | 22 | auto pRet = reinterpret_cast( 25 | base + 0x12E000 26 | )( 27 | list, title, color, height 28 | ); 29 | 30 | __asm add esp, 0x8 31 | 32 | return pRet; 33 | } 34 | }; 35 | #pragma runtime_checks("s", restore) 36 | } 37 | 38 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/GJRotationControl.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJROTATIONCONTROL_H__ 2 | #define __GJROTATIONCONTROL_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GDH_DLL GJRotationControl : public cocos2d::CCLayer { 9 | public: 10 | float m_nUnknown0; 11 | float m_nUnknown1; 12 | cocos2d::CCPoint m_obSliderPosition; 13 | cocos2d::CCSprite* m_pSliderThumb; 14 | float m_fObjAngle; 15 | float m_fAngle; 16 | int m_nTouchID; 17 | 18 | void setAngle(float angle) { 19 | this->m_obSliderPosition = cocos2d::CCPoint { sinf(angle) * 60.0f, cosf(angle) * 60.0f }; 20 | this->m_fAngle = angle; 21 | 22 | this->m_pSliderThumb->setPosition(this->m_obSliderPosition); 23 | } 24 | 25 | void updateSliderPosition(cocos2d::CCPoint const& pos) { 26 | reinterpret_cast( 29 | base + 0x94020 30 | )(this, pos); 31 | } 32 | }; 33 | 34 | } 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/GJScaleControl.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJSCALECONTROL_H__ 2 | #define __GJSCALECONTROL_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class Slider; 8 | class GJScaleControlDelegate; 9 | 10 | class GDH_DLL GJScaleControl : public cocos2d::CCLayer { 11 | public: 12 | gd::Slider* m_pSlider; 13 | unsigned int m_nTouchID; 14 | float m_fValue; 15 | PAD(0x4) 16 | cocos2d::CCLabelBMFont* m_pLabel; 17 | gd::GJScaleControlDelegate* m_pDelegate; 18 | 19 | void updateLabel(float value) { 20 | __asm movss xmm0, value 21 | 22 | reinterpret_cast( 23 | base + 0x94990 24 | )(this); 25 | } 26 | 27 | void loadValues(GameObject* obj, cocos2d::CCArray* objs) { 28 | reinterpret_cast( 31 | base + 0x94590 32 | )( 33 | this, obj, objs 34 | ); 35 | } 36 | }; 37 | 38 | } 39 | 40 | #endif 41 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/GJSpecialColorSelect.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJSPECIALCOLORSELECT_H__ 2 | #define __GJSPECIALCOLORSELECT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GDH_DLL GJSpecialColorSelect : public gd::FLAlertLayer { 9 | // todo 10 | 11 | public: 12 | static const char* textForColorIdx(int id) { 13 | return reinterpret_cast( 14 | base + 0x14e1d0 15 | )(id); 16 | } 17 | }; 18 | 19 | } 20 | 21 | #endif 22 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/GauntletSelectLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __GAUNTLETSELECTLAYER_H__ 2 | #define __GAUNTLETSELECTLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GauntletSelectLayer : public cocos2d::CCLayer { 8 | public: 9 | static GauntletSelectLayer* create() { 10 | return reinterpret_cast( 11 | base + 0x105120 12 | )(); 13 | } 14 | }; 15 | } 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/HSVWidgetPopup.h: -------------------------------------------------------------------------------- 1 | #ifndef __HSVWIDGETPOPUP_H__ 2 | #define __HSVWIDGETPOPUP_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL ConfigureHSVWidget : public cocos2d::CCNode { 8 | public: 9 | cocos2d::CCLabelBMFont* m_pHueLabel; 10 | cocos2d::CCLabelBMFont* m_pSaturationLabel; 11 | cocos2d::CCLabelBMFont* m_pBrightnessLabel; 12 | 13 | gd::Slider* m_pHueSlider; 14 | gd::Slider* m_pSaturationSlider; 15 | gd::Slider* m_pBrightnessSlider; 16 | 17 | cocos2d::ccHSVValue m_obValue; 18 | }; 19 | 20 | class GDH_DLL HSVWidgetPopup : public gd::FLAlertLayer { 21 | public: 22 | ConfigureHSVWidget* m_pConfigureWidget; 23 | HSVWidgetPopupDelegate* m_pDelegate; 24 | }; 25 | } 26 | 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/InfoLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __INFOLAYER_H__ 2 | #define __INFOLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL GJCommentListLayer : public cocos2d::CCLayerColor { 8 | public: 9 | BoomListView* m_pList; // 0x198 10 | }; 11 | 12 | class GDH_DLL InfoLayer : 13 | public FLAlertLayer, 14 | public LevelCommentDelegate, 15 | public CommentUploadDelegate, 16 | public FLAlertLayerProtocol /* 0x1d8 */ 17 | { 18 | public: 19 | PAD(44) 20 | GJCommentListLayer* m_pList; // 0x204 21 | }; 22 | } 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LeaderboardsLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __LEADERBOARDSLAYER_H__ 2 | #define __LEADERBOARDSLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | enum LeaderboardState { 8 | kLeaderboardStateTop100 = 1, 9 | kLeaderboardStateGlobal = 2, 10 | kLeaderboardStateCreator = 3, 11 | kLeaderboardStateFriends = 4, 12 | }; 13 | 14 | class LeaderboardsLayer : public cocos2d::CCLayer { 15 | public: 16 | static LeaderboardsLayer* create(LeaderboardState state) { 17 | return reinterpret_cast( 20 | base + 0x158710 21 | )( 22 | state 23 | ); 24 | } 25 | }; 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LevelBrowserLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __LEVELBROWSERLAYER_H__ 2 | #define __LEVELBROWSERLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GJSearchObject; 8 | 9 | class GDH_DLL LevelBrowserLayer : public cocos2d::CCLayer { 10 | public: 11 | PAD(24) 12 | GJListLayer* m_pList; // 0x134 13 | 14 | static LevelBrowserLayer* create(gd::GJSearchObject* pSearch) { 15 | return reinterpret_cast( 18 | gd::base + 0x159fa0 19 | )( 20 | pSearch 21 | ); 22 | } 23 | 24 | static void scene(gd::GJSearchObject* pSearch) { 25 | auto pScene = cocos2d::CCScene::create(); 26 | 27 | pScene->addChild(gd::LevelBrowserLayer::create(pSearch)); 28 | 29 | cocos2d::CCDirector::sharedDirector()->replaceScene( 30 | cocos2d::CCTransitionFade::create(.5f, pScene) 31 | ); 32 | } 33 | }; 34 | } 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LevelSearchLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __LEVELSEARCHLAYER_H__ 2 | #define __LEVELSEARCHLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL LevelSearchLayer : public cocos2d::CCLayer { 8 | public: 9 | static LevelSearchLayer* create() { 10 | return reinterpret_cast( 11 | base + 0x17d9c0 12 | )(); 13 | } 14 | }; 15 | } 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LevelSelectLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __LEVELSELECTLAYER_H__ 2 | #define __LEVELSELECTLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL LevelSelectLayer : public cocos2d::CCLayer { 8 | public: 9 | PAD(16) 10 | BoomScrollLayer* m_pScrollLayer; // 0x130 11 | 12 | static LevelSelectLayer* create(int lvl) { 13 | return reinterpret_cast( 14 | base + 0x185500 15 | )(lvl); 16 | } 17 | }; 18 | } 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/ListButtonBar.h: -------------------------------------------------------------------------------- 1 | #ifndef __LISTBUTTONBAR_H__ 2 | #define __LISTBUTTONBAR_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class BoomScrollLayer; 8 | 9 | class GDH_DLL ListButtonPage : public cocos2d::CCLayer { 10 | // todo 11 | }; 12 | 13 | class GDH_DLL ListButtonBar : public cocos2d::CCNode { 14 | public: 15 | BoomScrollLayer* m_pScrollLayer; // 0xec 16 | }; 17 | } 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LoadingCircle.h: -------------------------------------------------------------------------------- 1 | #ifndef __LOADINGCIRCLE_H__ 2 | #define __LOADINGCIRCLE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL LoadingCircle : public cocos2d::CCLayerColor { 8 | protected: 9 | cocos2d::CCSprite* m_pSprite; 10 | cocos2d::CCLayer* m_pParentLayer; 11 | bool m_bFade; 12 | 13 | public: 14 | static LoadingCircle* create() { 15 | return reinterpret_cast( 16 | base + 0x2A0D0 17 | )(); 18 | } 19 | void show() { 20 | return reinterpret_cast( 21 | base + 0x2A290 22 | )(this); 23 | } 24 | void setParentLayer(cocos2d::CCLayer* layer) { m_pParentLayer = layer; } 25 | void setFade(bool fade) { m_bFade = fade; } 26 | void fadeAndRemove() { 27 | return reinterpret_cast( 28 | base + 0x2A370 29 | )(this); 30 | } 31 | }; 32 | } 33 | 34 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/LoadingLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __LOADINGLAYER_H__ 2 | #define __LOADINGLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL LoadingLayer : public cocos2d::CCLayer { 8 | protected: 9 | PAD(4); 10 | int m_nLoadIndex; 11 | cocos2d::CCLabelBMFont* m_pCaption; 12 | PAD(4); 13 | //artifacts of rob debugging something 14 | cocos2d::CCSprite* m_pSliderBar; 15 | float m_fSliderGrooveXPos; 16 | PAD(4); 17 | bool m_bFromRefresh; 18 | 19 | public: 20 | static LoadingLayer* create(bool fromReload) { 21 | return reinterpret_cast( 22 | base + 0x18BFE0 23 | )(fromReload); 24 | } 25 | void setFromRefresh(bool value) { 26 | m_bFromRefresh = value; 27 | } 28 | }; 29 | } 30 | 31 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/MoreOptionsLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __MOREOPTIONSLAYER_H__ 2 | #define __MOREOPTIONSLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL MoreOptionsLayer : public FLAlertLayer { 8 | public: 9 | static MoreOptionsLayer* create() { 10 | return reinterpret_cast( 11 | base + 0x1de850 12 | )(); 13 | } 14 | 15 | void addToggle(const char* name, const char* key, const char* info) { 16 | reinterpret_cast(base + 0x1DF6B0)(this, name, key, info); 17 | } 18 | }; 19 | } 20 | 21 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/NumberInputLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef NUMBERINPUTLAYER_H 2 | #define NUMBERINPUTLAYER_H 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GDH_DLL NumberInputLayer : public FLAlertLayer { 9 | 10 | }; 11 | 12 | } 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/OBB2D.h: -------------------------------------------------------------------------------- 1 | #ifndef __OBB2D_H__ 2 | #define __OBB2D_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class OBB2D : public cocos2d::CCNode { 9 | // todo 10 | }; 11 | 12 | } 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/OptionsLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __OPTIONSLAYER_H__ 2 | #define __OPTIONSLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL OptionsLayer : public GJDropDownLayer { 8 | public: 9 | static OptionsLayer* create() { 10 | return reinterpret_cast( 11 | base + 0x1dd310 12 | )(); 13 | } 14 | 15 | static OptionsLayer* addToCurrentScene(bool noTransition = false) { 16 | auto layer = OptionsLayer::create(); 17 | cocos2d::CCDirector::sharedDirector() 18 | ->getRunningScene() 19 | ->addChild(layer); 20 | layer->showLayer(noTransition); 21 | return layer; 22 | } 23 | }; 24 | } 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/PauseLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __PAUSELAYER_H__ 2 | #define __PAUSELAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class CCBlockLayer; 9 | 10 | class GDH_DLL PauseLayer : public CCBlockLayer { 11 | protected: 12 | bool m_bUnknown; 13 | bool m_bUnknown2; 14 | 15 | public: 16 | void createToggleButton(cocos2d::SEL_MenuHandler callback, bool on, 17 | cocos2d::CCMenu* menu, std::string caption, cocos2d::CCPoint pos) { 18 | return reinterpret_cast( 20 | base + 0x1E5570 21 | )(this, callback, on, menu, caption, pos); 22 | } 23 | 24 | void musicSliderChanged(cocos2d::CCObject* pSender) { 25 | reinterpret_cast( 26 | base + 0x1e5ce0 27 | )(this, pSender); 28 | } 29 | 30 | void sfxSliderChanged(cocos2d::CCObject* pSender) { 31 | reinterpret_cast( 32 | base + 0x1ddfa0 33 | )(this, pSender); 34 | } 35 | }; 36 | } 37 | 38 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/ProfilePage.h: -------------------------------------------------------------------------------- 1 | #ifndef __PROFILEPAGE_H__ 2 | #define __PROFILEPAGE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class FLAlertLayer; 8 | 9 | class GDH_DLL ProfilePage : public FLAlertLayer, 10 | FLAlertLayerProtocol, 11 | LevelCommentDelegate, 12 | CommentUploadDelegate, 13 | UserInfoDelegate, 14 | UploadActionDelegate, 15 | UploadPopupDelegate, 16 | LeaderboardManagerDelegate 17 | { 18 | public: 19 | PAD(4); 20 | int m_nAccountID; 21 | 22 | public: 23 | static ProfilePage* create(int accountID, bool idk) { 24 | return reinterpret_cast( 27 | base + 0x20ee50 28 | )( 29 | accountID, idk 30 | ); 31 | } 32 | }; 33 | } 34 | 35 | 36 | #endif 37 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/SetIDPopup.h: -------------------------------------------------------------------------------- 1 | #ifndef SETIDPOPUP_H 2 | #define SETIDPOPUP_H 3 | 4 | #include 5 | 6 | namespace gd { 7 | class TextInputDelegate; 8 | 9 | class GDH_DLL SetIDPopup : public FLAlertLayer, public TextInputDelegate { 10 | // todo 11 | }; 12 | } 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/SetupPulsePopup.h: -------------------------------------------------------------------------------- 1 | #ifndef __SETUPPULSEPOPUP_H__ 2 | #define __SETUPPULSEPOPUP_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class FLAlertLayer; 8 | class GDH_DLL SetupPulsePopup : public FLAlertLayer, ColorPickerDelegate, TextInputDelegate, GJSpecialColorSelectDelegate { 9 | public: 10 | cocos2d::extension::CCControlColourPicker* colorPicker; 11 | PAD(48); 12 | cocos2d::CCSprite* currentColorSpr; 13 | cocos2d::CCSprite* prevColorSpr; 14 | PAD(100); 15 | int pulseMode; 16 | 17 | virtual void colorValueChanged(cocos2d::ccColor3B color) {} 18 | virtual void idfk() {} 19 | virtual void idfk2() {} 20 | }; 21 | } 22 | 23 | #endif -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/SongInfoLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __SONGINFOLAYER_H__ 2 | #define __SONGINFOLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class FLAlertLayer; 8 | 9 | class GDH_DLL SongInfoLayer : public FLAlertLayer { 10 | public: 11 | std::string m_downloadLink; 12 | std::string m_artistNewgrounds; 13 | std::string m_artistYoutube; 14 | std::string m_artistFacebook; 15 | 16 | static SongInfoLayer* create(int songID) { 17 | return reinterpret_cast(base + 0x250520)(songID); 18 | } 19 | static SongInfoLayer* create(std::string songName, std::string artistName, std::string downloadLink, std::string artistNG, std::string artistYT, std::string artistFB) { 20 | return reinterpret_cast( 21 | base + 0x250830)(songName, artistName, downloadLink, artistNG, artistYT, artistFB); 22 | } 23 | }; 24 | } 25 | 26 | #endif 27 | 28 | -------------------------------------------------------------------------------- /libs/gd.h/layers_scenes_transitions_nodes/VideoOptionsLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __VIDEOOPTIONSLAYER_H__ 2 | #define __VIDEOOPTIONSLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL VideoOptionsLayer : public FLAlertLayer { 8 | public: 9 | PAD(24) 10 | cocos2d::CCArray* m_pResolutions; // 0x1e4 11 | PAD(4) 12 | int m_nCurrentResolution; // 0x1ec 13 | }; 14 | } 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/gd.h/level_nodes/ColorAction.h: -------------------------------------------------------------------------------- 1 | #ifndef __COLORACTION_H__ 2 | #define __COLORACTION_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class ColorActionSprite; 8 | 9 | class GDH_DLL ColorAction : public cocos2d::CCNode { 10 | public: 11 | PAD(12); 12 | cocos2d::ccColor3B m_color; 13 | PAD(5); 14 | float m_unk100; 15 | bool m_blending; //0x0104 16 | PAD(3); 17 | int m_playerColor; //0x0108 18 | int m_unk10C; 19 | float m_opacity; //0x0110 20 | float m_unk114; 21 | cocos2d::ccHSVValue m_obCopyHSV; 22 | int m_copyID; // 0x128 color that youre copying 23 | PAD(1); 24 | bool m_copyOpacity; 25 | PAD(4); 26 | ColorActionSprite* m_colorSprite; //0x0134 27 | PAD(12); 28 | }; 29 | } 30 | 31 | #endif -------------------------------------------------------------------------------- /libs/gd.h/level_nodes/GJMapPack.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJMAPPACK_H__ 2 | #define __GJMAPPACK_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL GJMapPack : public cocos2d::CCNode 8 | { 9 | public: 10 | cocos2d::CCArray* m_pLevels; 11 | int m_nPackID; 12 | GJDifficulty m_eDifficulty; 13 | int m_nStars; 14 | int m_nCoins; 15 | std::string m_sPackName; 16 | std::string m_sLevels; 17 | cocos2d::ccColor3B m_tTextColour; 18 | cocos2d::ccColor3B m_tBarColour; 19 | int m_nMId; 20 | bool m_bIsGauntlet; 21 | }; 22 | } 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /libs/gd.h/level_nodes/SongInfoObject.h: -------------------------------------------------------------------------------- 1 | #ifndef __SONGINFOOBJECT_H__ 2 | #define __SONGINFOOBJECT_H__ 3 | 4 | #include 5 | #include 6 | 7 | namespace gd { 8 | class LevelSettingsObject; 9 | 10 | class GDH_DLL SongInfoObject : public cocos2d::CCNode { 11 | public: 12 | int m_nSongID; 13 | std::string m_sSongName; 14 | std::string m_sArtistName; 15 | std::string m_sVideoID; 16 | std::string m_sYouTubeChannelURL; 17 | std::string m_sSongLink; 18 | int m_nArtistID; 19 | float m_fFileSize; 20 | bool m_bIsUnloaded; 21 | bool m_bIsVerified; 22 | bool m_bIsBlocked; 23 | int m_nSongPriority; 24 | LevelSettingsObject *m_pLevelSettings; 25 | }; 26 | } 27 | #endif 28 | -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/AchievementManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __ACHIEVEMENTMANAGER_H__ 2 | #define __ACHIEVEMENTMANAGER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL AchievementManager : public cocos2d::CCNode { 8 | protected: 9 | PAD(16); 10 | cocos2d::CCDictionary* m_pAchievements; 11 | PAD(4); 12 | 13 | public: 14 | static AchievementManager* sharedState() { 15 | return reinterpret_cast( 16 | base + 0x7B10 17 | )(); 18 | } 19 | }; 20 | } 21 | 22 | #endif -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/GJEffectManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJEFFECTMANAGER_H__ 2 | #define __GJEFFECTMANAGER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class ColorAction; 8 | class GDH_DLL GJEffectManager : public cocos2d::CCNode { 9 | public: 10 | PAD(4); 11 | cocos2d::CCDictionary* m_colorActionDict; // 0xF0 12 | 13 | ColorAction* getColorAction(int num) { 14 | return reinterpret_cast( 17 | base + 0x11cde0 18 | )( 19 | this, num 20 | ); 21 | } 22 | }; 23 | } 24 | 25 | #endif -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/GManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __GMANAGER_H__ 2 | #define __GMANAGER_H__ 3 | 4 | #include 5 | 6 | class DS_Dictionary; 7 | 8 | namespace gd { 9 | 10 | class GDH_DLL GManager : public cocos2d::CCNode { 11 | protected: 12 | std::string m_sFileName; // 0xec 13 | bool m_bSetup; // 0x104 14 | bool m_bSaved; // 0x105 15 | 16 | public: 17 | void save() { 18 | return reinterpret_cast( 19 | base + 0x29250 20 | )(this, m_sFileName); 21 | } 22 | virtual void setup() { 23 | return reinterpret_cast( 24 | base + 0x28F60 25 | )(this); 26 | } 27 | virtual void encodeDataTo(DS_Dictionary* data) {} 28 | virtual void dataLoaded(DS_Dictionary* data) {} 29 | virtual void firstLoad() {} 30 | }; 31 | } 32 | 33 | #endif -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/GameSoundManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __GAMESOUNDMANAGER_H__ 2 | #define __GAMESOUNDMANAGER_H__ 3 | 4 | #include 5 | #include 6 | 7 | namespace gd { 8 | class GDH_DLL GameSoundManager : public cocos2d::CCNode { 9 | protected: 10 | cocos2d::CCDictionary* m_pDictionary1; 11 | cocos2d::CCDictionary* m_pDictionary2; 12 | PAD(12); 13 | bool m_bPreloaded; 14 | PAD(4); 15 | std::string m_sFilePath; 16 | 17 | public: 18 | static GameSoundManager* sharedState() { 19 | return reinterpret_cast( 20 | base + 0x24800 21 | )(); 22 | } 23 | static void playSound(std::string sName) { 24 | reinterpret_cast( 27 | base + 0x25450 28 | )( 29 | sName 30 | ); 31 | } 32 | void playBackgroundMusic(std::string path, bool idk, bool idk2) { 33 | reinterpret_cast(base + 0x252b0)(this, path, idk, idk2); 34 | } 35 | // penis 36 | void playBackgroundMusic(bool idk, std::string path) { 37 | reinterpret_cast(base + 0x4bf00)(this, idk, path); 38 | } 39 | void stopBackgroundMusic() { 40 | reinterpret_cast(base + 0x253a0)(this); 41 | } 42 | }; 43 | } 44 | 45 | #endif -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/LocalLevelManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __LOCALLEVELMANAGER_H__ 2 | #define __LOCALLEVELMANAGER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GDH_DLL LocalLevelManager /* 0x114 */ : public cocos2d::CCNode { 9 | public: 10 | PAD(0x1C); 11 | cocos2d::CCDictionary* m_pLoadData; // 0x108, seems to be just LoadData.plist 12 | cocos2d::CCDictionary* m_pLevelData; // 0x10c, level strings for all the main levels 13 | cocos2d::CCArray* m_pLevels; // 0x110 14 | 15 | static LocalLevelManager* sharedState() { 16 | return reinterpret_cast( 17 | base + 0x18d260 18 | )(); 19 | } 20 | }; 21 | 22 | } 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /libs/gd.h/manager_nodes/MusicDownloadManager.h: -------------------------------------------------------------------------------- 1 | #ifndef __MUSICDOWNLOADMANAGER_H__ 2 | #define __MUSICDOWNLOADMANAGER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL MusicDownloadManager : public cocos2d::CCNode { 8 | public: 9 | PAD(4); 10 | cocos2d::CCDictionary* m_unknownDict; 11 | cocos2d::CCArray* m_unknownArr; // list of MusicDelegateHandler s 12 | cocos2d::CCDictionary* m_songsDict; 13 | 14 | static MusicDownloadManager* sharedState() { 15 | return reinterpret_cast(base + 0x1945b0)(); 16 | } 17 | static std::string pathForSong(int id) { 18 | std::string res; 19 | 20 | reinterpret_cast(base + 0x1960e0)( 21 | &res, id 22 | ); 23 | 24 | return res; 25 | } 26 | 27 | cocos2d::CCArray* getDownloadedSongs() { 28 | return reinterpret_cast(base + 0x195640)(this); 29 | } 30 | 31 | void songStateChanged() { 32 | return reinterpret_cast(base + 0x194d90)(this); 33 | } 34 | }; 35 | } 36 | 37 | #endif 38 | -------------------------------------------------------------------------------- /libs/gd.h/other_nodes/DialogObject.h: -------------------------------------------------------------------------------- 1 | #ifndef __DIALOGOBJECT_H__ 2 | #define __DIALOGOBJECT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GDH_DLL DialogObject : public cocos2d::CCObject 9 | { 10 | public: 11 | std::string m_sText; 12 | std::string m_sTitle; 13 | int m_nDialogType; 14 | cocos2d::ccColor3B m_pColour; 15 | float m_fTextWidth; 16 | bool m_bCanSkip; 17 | }; 18 | } 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /libs/gd.h/other_nodes/GJRewardObject.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJREWARDOBJECT_H__ 2 | #define __GJREWARDOBJECT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | enum SpecialRewardItem 9 | { 10 | kSpecialRewardItemFireShard = 0x1, 11 | kSpecialRewardItemIceShard = 0x2, 12 | kSpecialRewardItemPoisonShard = 0x3, 13 | kSpecialRewardItemShadowShard = 0x4, 14 | kSpecialRewardItemLavaShard = 0x5, 15 | kSpecialRewardItemBonusKey = 0x6, 16 | kSpecialRewardItemOrbs = 0x7, 17 | kSpecialRewardItemDiamonds = 0x8, 18 | kSpecialRewardItemCustomItem = 0x9, 19 | }; 20 | 21 | enum UnlockType 22 | { 23 | kItemTypeCube = 0x1, 24 | kItemTypeCol1 = 0x2, 25 | kItemTypeCol2 = 0x3, 26 | kItemTypeShip = 0x4, 27 | kItemTypeBall = 0x5, 28 | kItemTypeBird = 0x6, 29 | kItemTypeDart = 0x7, 30 | kItemTypeRobot = 0x8, 31 | kItemTypeSpider = 0x9, 32 | kItemTypeStreak = 0xA, 33 | kItemTypeDeath = 0xB, 34 | kItemTypeGJItem = 0xC, 35 | }; 36 | 37 | class GDH_DLL GJRewardObject : public cocos2d::CCObject 38 | { 39 | public: 40 | SpecialRewardItem m_eSpecialRewardItem; 41 | UnlockType m_eUnlockType; 42 | int m_nItemID; 43 | int m_nTotal; 44 | }; 45 | } 46 | 47 | #endif 48 | -------------------------------------------------------------------------------- /libs/gd.h/other_nodes/PlayerCheckpoint.h: -------------------------------------------------------------------------------- 1 | #ifndef __PLAYERCHECKPOINT_H__ 2 | #define __PLAYERCHECKPOINT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL PlayerCheckpoint : public cocos2d::CCNode { 8 | public: 9 | cocos2d::CCPoint m_position; 10 | float m_yAccel; // 0x0F4 11 | bool m_isUpsideDown; // 0x0F8 12 | bool m_isShip; // 0x0F9 13 | bool m_isBall; // 0x0FA 14 | bool m_isUFO; // 0x0FB 15 | bool m_isWave; // 0x0FC 16 | bool m_isRobot; // 0x0FD 17 | bool m_isSpider; // 0x0FE 18 | bool m_isOnGround; // 0x0FF 19 | bool m_hasGhostTrail; // 0x100 this actually takes up 4 bytes for some reason, maybe rob has it as an int 20 | PAD(3); 21 | bool m_small; // 0x104 22 | float m_speed; // 0x108 23 | bool m_hidden; // 0x10C 24 | }; 25 | } 26 | 27 | #endif -------------------------------------------------------------------------------- /libs/gd.h/other_nodes/PointNode.h: -------------------------------------------------------------------------------- 1 | #ifndef __POINTNODE_H__ 2 | #define __POINTNODE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL PointNode : public cocos2d::CCObject { 8 | public: 9 | cocos2d::CCPoint m_obPoint; 10 | 11 | static PointNode* create(cocos2d::CCPoint point) { 12 | return reinterpret_cast(base + 0x14ec80)(point); 13 | } 14 | }; 15 | } 16 | 17 | #endif -------------------------------------------------------------------------------- /libs/gd.h/scroll_nodes/CCContentLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCCONTENTLAYER_H__ 2 | #define __CCCONTENTLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CCContentLayer : public cocos2d::CCLayerColor { 8 | //no members 9 | public: 10 | static CCContentLayer* create(const cocos2d::ccColor4B& color, float width, float height) { 11 | __asm { 12 | movss xmm1, width 13 | movss xmm2, height 14 | } 15 | return reinterpret_cast( 16 | base + 0x172A0 17 | )(color); 18 | } 19 | }; 20 | } 21 | 22 | #endif -------------------------------------------------------------------------------- /libs/gd.h/scroll_nodes/CCIndexPath.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCINDEXPATH_H__ 2 | #define __CCINDEXPATH_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CCIndexPath : public cocos2d::CCObject { 8 | public: 9 | int m_nPosition; // 0x20 10 | int m_nUnknown2; // 0x24 11 | 12 | public: 13 | static CCIndexPath* create(unsigned int idk1, int idk2) { 14 | return reinterpret_cast( 15 | base + 0x30E40 16 | )(idk1, idk2); 17 | } 18 | }; 19 | } 20 | 21 | #endif -------------------------------------------------------------------------------- /libs/gd.h/scroll_nodes/ScrollingLayer.h: -------------------------------------------------------------------------------- 1 | #ifndef __SCROLLINGLAYER_H__ 2 | #define __SCROLLINGLAYER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL ScrollingLayer : public cocos2d::CCLayerColor { 8 | public: 9 | PAD(0x28) 10 | float m_fLayerHeight; 11 | PAD(0x4) 12 | cocos2d::CCLayer * m_pScrollLayer; 13 | cocos2d::CCNode* m_pParent; 14 | 15 | static ScrollingLayer * create(cocos2d::CCSize _size, cocos2d::CCPoint _point, float _unknown) { 16 | auto pRet = reinterpret_cast( 19 | base + 0x2d8e0 20 | )( 21 | _size, _point, _unknown 22 | ); 23 | 24 | __asm add esp, 0x14 25 | 26 | return pRet; 27 | } 28 | }; 29 | } 30 | 31 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/AnimatedShopKeeper.h: -------------------------------------------------------------------------------- 1 | #ifndef __ANIMATEDSHOPKEEPER_H__ 2 | #define __ANIMATEDSHOPKEEPER_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class CCAnimatedSprite; 9 | 10 | typedef enum { 11 | kShopTypeNormal, 12 | kShopTypeSecret, 13 | kShopTypeCommunity 14 | } ShopType; 15 | 16 | class GDH_DLL AnimatedShopKeeper : public CCAnimatedSprite { 17 | protected: 18 | float m_fUnknown1; 19 | float m_fUnknown2; 20 | bool m_bUnknown; 21 | 22 | public: 23 | static AnimatedShopKeeper* create(ShopType type) { 24 | return reinterpret_cast( 25 | base + 0x14C4D0 26 | )(type); 27 | } 28 | void startAnimating() { 29 | return reinterpret_cast( 30 | base + 0x14C690 31 | )(this); 32 | } 33 | 34 | //own vtable 35 | virtual void animationFinished(const char*) {} 36 | }; 37 | } 38 | 39 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/CCAnimatedSprite.h: -------------------------------------------------------------------------------- 1 | #ifndef __CCANIMATEDSPRITE_H__ 2 | #define __CCANIMATEDSPRITE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL CCAnimatedSprite : public cocos2d::CCSprite { 8 | protected: 9 | std::string m_sUnknown1; 10 | std::string m_sUnknown2; 11 | PAD(20); 12 | std::string m_sUnknown3; 13 | PAD(4); 14 | 15 | public: 16 | static CCAnimatedSprite* create(const char* file) { 17 | return reinterpret_cast( 18 | base + 0x14540 19 | )(file); 20 | } 21 | 22 | //own vtable 23 | virtual void animationFinished(const char*) {} 24 | virtual void animationFinishedO(cocos2d::CCObject*) {} 25 | 26 | void runAnimation(std::string name) { 27 | reinterpret_cast(base + 0x14f60)(this, name); 28 | } 29 | }; 30 | 31 | class GDH_DLL AnimatedSpriteDelegate { 32 | virtual void animationFinished(const char*) {} 33 | }; 34 | } 35 | 36 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/ColorActionSprite.h: -------------------------------------------------------------------------------- 1 | #ifndef __COLORACTIONSPRITE_H__ 2 | #define __COLORACTIONSPRITE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL ColorActionSprite : public cocos2d::CCNode { 8 | 9 | }; 10 | } 11 | 12 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/GJRobotSprite.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJROBOTSPRITE_H__ 2 | #define __GJROBOTSPRITE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class CCAnimatedSprite; 9 | 10 | class GDH_DLL GJRobotSprite : public CCAnimatedSprite { 11 | PAD(8); // 0x244 12 | cocos2d::ccColor3B m_secondaryColor; // 0x24c 13 | }; 14 | } 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/GJSpiderSprite.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJSPIDERSPRITE_H__ 2 | #define __GJSPIDERSPRITE_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | 8 | class GJRobotSprite; 9 | 10 | class GDH_DLL GJSpiderSprite : public GJRobotSprite { 11 | 12 | }; 13 | } 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/GJSpriteColor.h: -------------------------------------------------------------------------------- 1 | #ifndef __GJSPRITECOLOR_H__ 2 | #define __GJSPRITECOLOR_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL GJSpriteColor : public cocos2d::CCNode { 8 | public: 9 | int colorID; //0x00EC 10 | int defaultColorID; //0x00F0 11 | float unk_0F4; 12 | float hue; //0x00F8 13 | float saturation; //0x00FC 14 | float brightness; //0x0100 15 | bool saturationChecked; //0x0104 16 | bool brightnessChecked; //0x0105 17 | PAD(2); 18 | bool unk_108; 19 | PAD(3); 20 | float unk_10C; 21 | bool unk_110; 22 | PAD(3); 23 | }; 24 | } 25 | 26 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/HardStreak.h: -------------------------------------------------------------------------------- 1 | #ifndef __HARDSTREAK_H__ 2 | #define __HARDSTREAK_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL HardStreak : public cocos2d::CCDrawNode { 8 | public: 9 | cocos2d::CCArray* m_pointsArr; // 0x011C 10 | cocos2d::CCPoint m_currentPoint; // 0x0120 where the wave is at rn 11 | float m_waveSize; // 0x0128 bad name but its 1.0 for regular and 0.6 mini 12 | float m_pulseSize; // 0x012C 13 | bool m_isSolid; // 0x0130 14 | }; // size = 0x134 15 | } 16 | 17 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/TeleportPortalObject.h: -------------------------------------------------------------------------------- 1 | #ifndef __TELEPORTPORTALOBJECT_H__ 2 | #define __TELEPORTPORTALOBJECT_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GameObject; 8 | class GDH_DLL TeleportPortalObject : public GameObject { 9 | public: 10 | PAD(4); // i have no idea what this is, its not even set to 0 in the ctor 11 | TeleportPortalObject* m_pOrangePortal; // 0x46c 12 | bool unk470; 13 | float unk474; 14 | bool unk478; 15 | }; 16 | } 17 | 18 | #endif -------------------------------------------------------------------------------- /libs/gd.h/sprite_nodes/TextArea.h: -------------------------------------------------------------------------------- 1 | #ifndef __TEXTAREA_H__ 2 | #define __TEXTAREA_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | #pragma runtime_checks("s", off) 8 | class GDH_DLL TextArea : public cocos2d::CCSprite { 9 | protected: 10 | PAD(0x58); 11 | 12 | public: 13 | static TextArea* create(const char* font, bool disableColor, 14 | std::string caption, float scale, float width, float height, 15 | cocos2d::CCPoint const& anchorPos) { 16 | auto pRet = reinterpret_cast( 19 | base + 0x33270 20 | )(font, 0.f, scale, width, height, disableColor, caption, anchorPos); 21 | __asm add esp, 0x20 22 | return pRet; 23 | } 24 | 25 | void colorAllCharactersTo(cocos2d::ccColor3B color) { 26 | reinterpret_cast(base + 0x33830)(this, color); 29 | } 30 | 31 | void setString(std::string const& str) { 32 | reinterpret_cast(base + 0x33480)(this, str); 35 | } 36 | }; 37 | #pragma runtime_checks("s", restore) 38 | } 39 | 40 | #endif -------------------------------------------------------------------------------- /libs/gd.h/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.3.0) 2 | set(CMAKE_CXX_STANDARD 17) 3 | set(CMAKE_CXX_STANDARD_REQUIRED ON) 4 | set(CMAKE_CXX_EXTENSIONS OFF) 5 | cmake_policy(SET CMP0057 NEW) 6 | 7 | project(offset-test) 8 | add_executable(offset-test generated.cpp) 9 | target_include_directories( 10 | offset-test PRIVATE 11 | cocos-headers/ 12 | cocos-headers/extensions 13 | cocos-headers/cocos2dx 14 | cocos-headers/cocos2dx/include 15 | cocos-headers/cocos2dx/kazmath/include 16 | cocos-headers/cocos2dx/platform/win32 17 | cocos-headers/cocos2dx/platform/third_party/win32 18 | cocos-headers/cocos2dx/platform/third_party/win32/OGLES 19 | ../include 20 | ../ 21 | ) 22 | target_link_libraries( 23 | offset-test 24 | ${CMAKE_SOURCE_DIR}/cocos-headers/cocos2dx/libcocos2d.lib 25 | ${CMAKE_SOURCE_DIR}/cocos-headers/extensions/libExtensions.lib 26 | ) -------------------------------------------------------------------------------- /libs/gd.h/test/nuke-ctors.py: -------------------------------------------------------------------------------- 1 | import re 2 | from pathlib import Path 3 | 4 | with open('../include/gd.h', 'r') as file: 5 | files = re.findall(r'#include "(.+?)"', file.read()) 6 | 7 | for path in files: 8 | path = Path('..') / path 9 | if path.exists(): 10 | with open(path, 'r') as file: 11 | contents = file.read() 12 | 13 | match = re.search(r'class ([a-zA-Z_]+) .+ {[\s\S]+(\1\(\)\s*{[\s\S]+?})', contents) 14 | if match: 15 | with open(path, 'w') as file: 16 | file.write(contents.replace(match.group(2), '')) -------------------------------------------------------------------------------- /libs/gd.h/test/template.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | int main() { 7 | // {INJECT CODE} 8 | } -------------------------------------------------------------------------------- /libs/gd.h/trigger_popups/SetupPickupTriggerPopup.h: -------------------------------------------------------------------------------- 1 | #ifndef __SETUPPICKUPTRIGGERPOPUP_H__ 2 | #define __SETUPPICKUPTRIGGERPOPUP_H__ 3 | 4 | #include 5 | 6 | namespace gd { 7 | class GDH_DLL SetupPickupTriggerPopup : public FLAlertLayer, public TextInputDelegate { 8 | public: 9 | PAD(0xc) 10 | CCTextInputNode* m_pCountInput; // 0x1dc 11 | // too lazy to RE more, it should be 12 | // really easy to find the rest tho 13 | }; 14 | } 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /libs/gd.h/xmake.lua: -------------------------------------------------------------------------------- 1 | target("gd.h") 2 | set_kind("headeronly") 3 | add_deps("cocos-headers") 4 | add_includedirs("include", ".", {public = true}) -- "." = current dir 5 | target_end() -------------------------------------------------------------------------------- /libs/mat-dash/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 matcool 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /libs/mat-dash/include/matdash/boilerplate.hpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void mod_main(HMODULE); 4 | 5 | namespace { 6 | DWORD WINAPI mat_dash_thread_function__(void* module) { 7 | mod_main(reinterpret_cast(module)); 8 | return 0; 9 | } 10 | } 11 | 12 | BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID) { 13 | if (reason == DLL_PROCESS_ATTACH) { 14 | DisableThreadLibraryCalls(module); 15 | if (auto handle = CreateThread(0, 0, mat_dash_thread_function__, module, 0, 0)) { 16 | CloseHandle(handle); 17 | } else { 18 | return FALSE; 19 | } 20 | } 21 | return TRUE; 22 | } -------------------------------------------------------------------------------- /libs/mat-dash/include/matdash/console.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | #include 5 | #include 6 | 7 | namespace matdash { 8 | struct Console { 9 | std::ofstream out, in; 10 | Console() { 11 | AllocConsole(); 12 | out = decltype(out)("CONOUT$", std::ios::out); 13 | in = decltype(in)("CONIN$", std::ios::in); 14 | std::cout.rdbuf(out.rdbuf()); 15 | std::cin.rdbuf(in.rdbuf()); 16 | 17 | FILE* dummy; 18 | freopen_s(&dummy, "CONOUT$", "w", stdout); 19 | } 20 | ~Console() { 21 | out.close(); 22 | in.close(); 23 | } 24 | }; 25 | 26 | inline void create_console() { 27 | static Console console; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /libs/mat-dash/include/matdash/minhook.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | inline void matdash::add_hook_impl(void* addr, void* detour, void** trampoline) { 5 | static bool initialized = false; 6 | if (!initialized) { 7 | MH_Initialize(); 8 | initialized = true; 9 | } 10 | MH_CreateHook(addr, detour, trampoline); 11 | MH_EnableHook(addr); 12 | } -------------------------------------------------------------------------------- /libs/mat-dash/xmake.lua: -------------------------------------------------------------------------------- 1 | target("mat-dash") 2 | set_kind("headeronly") 3 | add_includedirs("include", {public = true}) 4 | target_end() -------------------------------------------------------------------------------- /libs/minhook/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Tsuda Kageyu 2 | Creator, maintainer 3 | 4 | Michael Maltsev 5 | Added "Queue" functions. A lot of bug fixes. 6 | 7 | Andrey Unis 8 | Rewrote the hook engine in plain C. 9 | --------------------------------------------------------------------------------