maniaplanet/manialib-manialink

This package is abandoned and no longer maintained. The author suggests using the manialib/manialink package instead.

Object-oriented PHP library for writing Manialink interfaces.

v0.1.1 2014-05-27 08:53 UTC

This package is auto-updated.

Last update: 2022-02-01 12:32:03 UTC


README

Latest Stable Version Latest Unstable Version Total Downloads Build

ManiaLib\Manialink is an object-oriented PHP library for writing Manialink interfaces based on ManiaLib\XML.

We discuss about it at http://forum.maniaplanet.com/viewtopic.php?f=40&t=25999

Installation

Install via Composer:

{
	"require": {
        "maniaplanet/manialib-manialink": "0.3.*@dev"
    }
}

Features

  • Features of ManiaLib\XML
  • Frame logical size and alignment
  • Relative Alignment of child inside sized parent
  • Cards for composing complex reusable sets of elements
  • Helper classes for all styles/substyles

Architecture

  • See ManiaLib\XML
  • Most element should implement setter for usual attributes (eg. ManiaLib\Manialink\Elements\Quad::setImage($image)), but if the setter doesnt exists you can use setAttribute($name, $value) instead.
  • For style and substyle, the setStyle($style) method handles both at once when used with abstract classes in ManiaLib\Manialink\Styles\ eg. Quad::create()->setStyle(Bgs1::BgWindow1);

Examples

See /examples directory

Alignment and Relative Alignment

  • Frame Size and Alignment emulates the behaviour of standard elements alignment in frames. With this you can create logical containers with a size, and position them using aligns and relative aligns (see below).
  • Relative Alignment helps position an element relative to its parent container. For this, you need a frame with a size and a child with a size ; for instance you can put a quad in the "bottom right corner of a frame with a size".

To help understand these concepts visually:

Has it anything to do with ManiaLib Framework?

Compared to former version of ManiaLib, this is just meant to be a standalone package to build Manialink pages. It can be used in any sort of projects, from Web frameworks (eg. ManiaLib) to server controllers (eg. ManiaLive). It shares some common code with ManiaLib\Gui, but a lot was changed in naming and overall architecture.

Todo

  • Bug layouts dans Frame3d?
  • Implement all Element classes
  • Implement all layouts
  • PhpDoc