GithubHelp home page GithubHelp logo

jonike / objectivelymvc Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jdolan/objectivelymvc

0.0 3.0 0.0 27.63 MB

Object oriented MVC framework for OpenGL, SDL2 and GNU C. Inspired by Apple's AppKit.

License: Other

Makefile 0.11% C 97.97% CSS 0.16% C++ 1.40% Objective-C 0.31% M4 0.05%

objectivelymvc's Introduction

Build Status Zlib License This software is PRE-ALPHA

ObjectivelyMVC

Object oriented MVC framework for OpenGL, SDL2 and GNU C

ObjectivelyMVC is a cross-platform user interface and interaction framework for SDL2 inspired by Apple's AppKit. It is geared towards building high-quality, modern looking user interfaces within OpenGL video games that are already using SDL2. It is built on Objectively, written in GNU C, and requires gcc or clang.

Features

Object oriented Model-View-Controller implementation in C

ObjectivelyMVC is built on Objectively, an ultra-lightweight object oriented framework for GNU C. ObjectivelyMVC delivers the elegance of OO / MVC without imposing C++ on your project. If you are using C++ or Objective-C, ObjectivelyMVC is perfectly happy alongside those, too.

WindowController *windowController = $(alloc(WindowController), initWithWindow, window);

Easily embeddable in any SDL2 / OpenGL application

ObjectivelyMVC is purpose-built for video games. Unlike Gtk+, Qt, wxWidgets, FLTK, ..ObjectivelyMVC does not hijack the main loop. ObjectivelyMVC does not create a window, manage an OpenGL context, or originate events. Your game already does that, because it has to. Like your mother, ObjectivelyMVC only asks that you give it a call once in a while. That's it.

$(windowController, respondToEvent, &event);
...
$(windowController, render);

Beautiful 4K-ready fonts

ObjectivelyMVC uses SDL_ttf to render TrueType fonts. It also automatically detects High-DPI (Retina, 4K) displays, and scales fonts accordingly. The result is crisp, beautiful vector-based fonts that look native, because they are.

Data *data = $$(Data, dataWithContentsOfFile, "Verdana.ttf");
...
$$(Font, cacheFont, data, "Verdana");
...
Font *verdana = $$(Font, cachedFont, "Verdana", 24, FontStyleRegular); // will render at 48pt on Retina displays

Full suite of Views and Controls

ObjectivelyMVC provides a robust set of containers, views and controls. Stack and arrange components with Box, Panel and StackView. Add Buttons, Checkboxes, Selects, Sliders, editable TextViews and more by simply instantiating them. Display tabular data or a thumbnail gallery with TableView and CollectionView. Split complex interfaces into multiple tabs with TabView and TabViewController. Bind Actions to SDL_Event types, or use the specialized delegate callbacks for convenience.

$(button, addActionForEventType, SDL_MOUSEBUTTONUP, my_callback, my_sender, my_data);
Select *select = $(alloc(Select), initWithFrame, NULL);
...
select->delegate.didSelectOption = my_callback;

Programmatic or JSON-based layout options

ObjectivelyMVC allows you to define your View hierarchy programmatically, via JSON, or using any combination of both. Programmatic layout gives you explicit control over the big picture, while JSON layout allows you to reduce boilerplate and avoid common pitfalls like memory leaks.

{
	"class": "Panel",
	"style": {
		"top": 50,
		"left": 50
	},
	"contentView": {
		"subviews": [{
			"class": "Input",
			"control": {
				"class": "Checkbox",
				"identifier": "checkbox"
			},
			"label": {
				"text": "This is a checkbox:"
			}
		}]
	}
}

Fully themable via Cascading Stylesheets

ObjectivelyMVC uses a custom CSS3 dialect to manage all aspects of its presentation. Nothing about the look and feel of ObjectivelyMVC is hard-coded, and authoring and attaching new Stylesheets is trivial and straightforward.

/* MyView.css */

Box {
	border-color: #1e4e62;
}

Panel {
	background-color: #08151aaa;
}

.columns {
	autoreizing-mask: contain | width;
	axis: horizontal;
	distribution: fill;
}

.columns > .column {
	autoresizing-mask: contain | height;
	distribution: fill;
	width: 384;
}

Simple, flexible resource loading

ObjectivelyMVC makes loading Fonts, Images, Stylesheets, and Views painless. For direct filesystem access, add directories to its search path with $$(Resource, addResourcePath, "/my/path"). To search your game's filesystem abstraction, implement a custom ResourceProvider function, and register it:

static Data *resourceProvider(const char *name) {
	uint8_t *bytes;

	const ssize_t length = read_file_from_gamefs(name, &bytes);

	return length != -1 ? $$(Data, dataWithBytes, bytes, length) : NULL;
}

// ...

$$(Resource, setProvider, resourceProvider);

Examples

HelloViewController

An example application that creates a Window, enters its main loop and draws a scene before rendering a simple menu. This example uses JSON layout.

Hello, ObjectivelyMVC!

Quetoo

Quetoo is an open source FPS based on idTech2. Quetoo uses ObjectivelyMVC for its in-game user interface:

Quetoo Quetoo Quetoo

Installation

See INSTALL.md for installation and linking instructions.

API documentation

The API documentation can be browsed online or generated with Doxygen by running make html.

objectivelymvc's People

Contributors

ingarkct avatar jdolan avatar kaadmy avatar paril avatar tapir avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.