• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

tido64/rainbow: Rainbow is a scriptable, cross-platform, 2D game engine.

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

tido64/rainbow

开源软件地址:

https://github.com/tido64/rainbow

开源编程语言:

C 48.2%

开源软件介绍:

Rainbow
Logo courtesy of @Tobaloidee

Language grade: C/C++ Code coverage CI

Rainbow is a scriptable, cross-platform, 2D game engine. Games can be written in both C++ and JavaScript/TypeScript. Check out the examples below.

[Documentation] Get started. It's a good place to start learning what you can do with Rainbow.

[Discussions] Get answers, or even better, share your awesome work!

[Roadmap] Find planned features and future directions (the old board can be found on Trello).

Rainbow currently runs on the following platforms:

Platform Status
Windows Windows Build Status
macOS macOS Build Status
Linux Linux Build Status
Android Android Build Status
iOS iOS Build Status
Emscripten (experimental) Emscripten Build Status

We even have a prototype that runs in your browser. Give it a try!

Examples

Label

const label = new Rainbow.Label()
  .alignment(Rainbow.TextAlignment.Center)
  .font("OpenSans-Light.ttf")
  .fontSize(60)
  .position({
    x: screenWidth * 0.5,
    y: screenHeight * 0.55
  })
  .text("Hello\nWorld");

Rainbow.RenderQueue.add(label);

Sprite Sheet Animation

const texture = new Rainbow.Texture("monkey.png");

const batch = new Rainbow.SpriteBatch(1);
batch.setTexture(texture);

const sprite = batch.createSprite(104, 149);
sprite.position({
  x: screenWidth * 0.5,
  y: screenHeight * 0.5,
});

const frames = [
  { left: 400, bottom: 724, width: 104, height: 149 },
  { left: 504, bottom: 724, width: 104, height: 149 },
  { left: 608, bottom: 724, width: 104, height: 149 },
  { left: 712, bottom: 724, width: 104, height: 149 },
  { left: 816, bottom: 724, width: 104, height: 149 },
  { left: 920, bottom: 724, width: 104, height: 149 },
];

const animation = new Rainbow.Animation(sprite, frames, 6, 0);
animation.start();

Rainbow.RenderQueue.add(batch);
Rainbow.RenderQueue.add(animation);

Structure

rainbow
├── build    # Build related files
├── doc      # Documentation
├── include  # Public Rainbow headers
├── js       # JS playground
├── lib      # Third party dependencies
├── src      # Rainbow source code
└── tools    # Build scripts, JS bindings generator, and other tools...

Contribute

Visual Studio Test Adapter for Google Test

Rainbow uses Google Test. To make Visual Studio recognize the tests, you'll need to install Test Adapter for Google Test and set the working directory in TestOptions…Test Adapter for Google Test:

  • Working directory: $(SolutionDir)

You'll also need to copy SDL2.dll into $(SolutionDir)\$(Configuration), e.g. $(SolutionDir)\Debug, because Test Adapter for Google Test doesn't honour the working directory setting when discovering tests.

Dependencies

Name Version License Required
Abseil 111ca70 Apache 2.0
cubeb 03ec1b3 ISC
Dear ImGui 1.83 MIT
Duktape 2.5.0 MIT
FreeType 2.10.1 FreeType
HarfBuzz 2.6.4 Old MIT
libpng 1.6.37 libpng v2
Mapbox Variant 1.2.0 BSD-3
NanoSVG cc6c08d zlib
Ogg Vorbis 1.3.7 BSD-3
PhysicsFS 3.0.2 zlib
SDL 2.0.12 zlib
zlib 1.2.11 zlib
Box2D 2.4.0 MIT
FMOD 1.05.x Proprietary

License

Copyright (c) 2010-present Bifrost Entertainment AS and Tommy Nguyen.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap