• Stars
    star
    438
  • Rank 95,664 (Top 2 %)
  • Language
    Swift
  • Created almost 8 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Cross-platform 2D Game Engine in pure Swift

Fiber2D

Join the chat at https://gitter.im/Fiber2D/Lobby

Swift Version Build State Target Platforms

This project originated as cocos2d-objc rewrite to Swift. As I stopped commiting to the repo since June, because Obj-C is dead for me.

This is still in a very alpha state, but you already can build some games with it, even though it may be unpleasant process as I change API almost every day. The project served as .dylib (.so on Linux/Android) that builds by Swift Package Manager. It requires some project config in order to use it, but you can experiment with the demo provided in the repo. Generally the project should be considered unstable and most of the API is likely to be changed.

Basement

We worked hard before starting this project and it relies on several self-made libs we made:

Thanks to them we currently have:

  • Ultra fast cross-platform math lib, that works with SIMD on Darwin platforms and has self-implemnted algorithms to run on Glibc based environment. Not speaking of zero ARC impact and modern swifty syntax features.
  • Modern agnostic renderer, which works with following list of backends out of the box:
    • Direct3D 9, 11, 12
    • Metal
    • OpenGL 2.1, 3.1+, ES 2, ES 3.1
    • WebGL 1.0, 2.0

What it looks like?

Currently this repo only contains demos for Linux, Android, iOS and macOS. macOS demo can use both MetalKit and SDL. iOS demo only supports MetalKit for now and can be easily ported to tvOS. Linux and Android demos can only be compiled with SDL, hence only GL rendering backend is available.

You can get the idea from this GIF: Fiber2D Demo Gif

Goals (updated 29 DEC 2016)

My goals for the near future are (order means nothing):

  • Port to Windows
  • Introduce basic UI components (Button, Slider, Label)
  • Introduce GPU computed Particle systems
  • Drop the concept of contentScale and use one set of assets for all screen resolutions
  • Add support for more asset format loading from .jpg to .pvr
  • Add easy post-processing mechanism

We have a trello which I will try to maintain soon.

Build

macOS

  1. Clone

    $ git clone --recursive https://github.com/s1ddok/Fiber2D.git

  2. Call helper script, that will do all the preparation stuff for you.

    cd external/SwiftBGFX/3rdparty/bgfx
    make osx-debug64 
    
  3. Generate XCode project

    cd ../../../../
    make xcodeproj-macos
    
  4. Open XCode project, compile and run. You should see the demo yourself.

iOS

  1. Clone, build bgfx for iOS
  2. make xcodeproj-ios
  3. Open demo XCode project, drag Fiber2D-iOS.xcodeproj somewhere in System/iOS group (just for reasonable structure).
  4. Go to Project Settings -> Fiber2D-demo-iOS Target settings. Add all frameworks from Fiber2D-iOS to Embedded binaries: Embedded binaries example Double check that the same binaries appear in Target dependencies section of Build Phases.
  5. Compile and run

Contributors

  • @stuartcarnie did initial setup of the bgfx renderer along with general support on how to use it
  • @gonzalolarralde helped with Android port of libDispatch/libFoundation and Fiber2D itself.

Questions

You can reach me on twitter (@s1ddok) or by e-mail in my profile.

LICENSE (BSD 2-clause)

All parts in this package (Fiber2D, SwiftMath, SwiftBGFX and bgfx itself) use the same license.

Copyright 2016 Andrey Volodin. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY COPYRIGHT HOLDER ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

More Repositories

1

Alloy

Make usage of Metal API a pleasure
Swift
376
star
2

HED-CoreML

Holistically-Nested Edge Detection (HED) using CoreML and Swift
Swift
105
star
3

mtlswift

Metal shader Swift encoding code generator
Swift
71
star
4

CCProjectGenerator

A tool for easy creating a template cocos2d XCode projects
Objective-C
64
star
5

MetalCoreGraphics

Combine the power of Metal and CoreGraphics by sharing resource memory
Swift
51
star
6

Lutty

Example app on Metal and SwiftUI usage for color-grading with LUTs
Swift
31
star
7

pix2pix-s4tf

pix2pix implementation using Swift for TensorFlow
Swift
26
star
8

Sardonyx

Convert your ONNX models into Swift for TensorFlow or Metal Performance Shaders (WIP)
Swift
24
star
9

SwiftyCVPixelBuffer

Swift-ish API for CVPixelBuffer
Swift
16
star
10

MTLTextureView

Tiny UIView subclass that acts like UIImageView but for MTLTextures
Swift
16
star
11

DebugMenu

Swift
9
star
12

C2Swift

Template caffe2 Swift project for iOS with MPSCNN backend usage
C++
4
star
13

face-landmarks-s4tf

Face landmarks EfficientNet-based model built from scratch with Swift for TensorFlow
Swift
4
star
14

CycleGAN-s4tf

CycleGAN implementation using Swift for TensorFlow
Swift
3
star
15

PackageDescriptionBuilder

XCode project that is set up to have auto-completion for Package.swift manifest files
Swift
3
star
16

HitTestVisualizer

Hit-Test Visualizer for ARKit extracted as a portable framework
Swift
2
star
17

ctmf-neon

ARM NEON accelerated Constant Time Median Filter implementation
C
2
star
18

Fiber2D-Android-Project

A template android project to be used with Fiber2D
C
2
star
19

CChipmunk2D

C
2
star
20

CCPotentiometer

Lightweight port of CCPotentiometer for cocos2d from v2 to v3.4.9
Objective-C
1
star
21

OptionsViewController

UIViewController subclass for easy option menu implementation
Swift
1
star
22

MetalSTL

Very simple example on how to load STL object and render it with Metal
Swift
1
star
23

UIKonfDemo

Small intro into compute shaders with Alloy and Metal for my UIKonf talk
Swift
1
star
24

MetalDispatchBenchmark

Benchmark different approached to kernel dispatching
Swift
1
star
25

Cpng

libpng wrapper for Swift Package Manager
C
1
star
26

CSDL2

SDL2 wrapper for Swift Package Manager
C
1
star