Skip to main content

UNKNOWN

Project description

IDLite は開発中のプロジェクトです。 予告なく、下位互換性のない変更を行います。

背景

IDLite は、 Unity でモバイルオンラインゲームを作成するときに、 Unity C# で JSON を 扱うのが面倒なのを解決してくれるツールです。

固い protocol を使いたい場合は protocol buffer や thrift や msgpack idl がありますが、 これらは効率的にデータをパックするために、 {“キー”: 値} という構造ではなくて、 配列中の位置に意味をもたせているため、効率よりも Web 系のカジュアルな開発スタイルを 重視する場合には使いにくいことがあります。

JSON schema もありますが、これも複雑で学習が難しいものです。

LitJSON など、 JSON を手軽に扱える C# のライブラリはありますが、 リフレクションやジェネリクスに制限のある iOS では動かないケースがあります。

IDLite は、この隙間の需要を満たすためのものです。

サンプル

IDL

// ドキュメントコメント
// 複数行書けます.
enum Color {
    red = 1,
    green = 2,
    blue = 3
};

# 無視されるコメント

// ボール
class Ball {
    // ボールの持ち主
    string? owner;
    // ボールの色
    enum Color color;
    // 座標
    float x;
    float y;
};

class Field {
    List<Ball> balls;
};

生成されるコード

// This code is automatically generated.
// Don't edit this file directly.
using System;
using System.Collections.Generic;

namespace IDLite
{
        /// <summary>
        /// ドキュメントコメント
        /// 複数行書けます.
        /// </summary>
        public enum Color
        {
                red = 1,
                green = 2,
                blue = 3
        }


        /// <summary>
        /// ボール
        /// </summary>
        [Serializable]
        public partial class Ball : IDLiteBase
        {
                /// <summary>
                /// ボールの持ち主
                /// </summary>
                public string owner;
                /// <summary>
                /// ボールの色
                /// </summary>
                public Color color;
                /// <summary>
                /// 座標
                /// </summary>
                public double x;
                public double y;

                public Ball(string owner, Color color, double x, double y)
                {
                        this.owner = owner;
                        this.color = color;
                        this.x = x;
                        this.y = y;
                }

                public Ball(Dictionary<string, object> dict)
                {
                        this.owner = ToString(GetItem(dict, "owner"));
                        this.color = (Color)ToInt(GetItem(dict, "color"));
                        this.x = ToDouble(GetItem(dict, "x"));
                        this.y = ToDouble(GetItem(dict, "y"));
                }
        }

        [Serializable]
        public partial class Field : IDLiteBase
        {
                public List<Ball> balls;

                public Field(List<Ball> balls)
                {
                        this.balls = balls;
                }

                public Field(Dictionary<string, object> dict)
                {
                        this.balls = GetList<Ball>(dict, "balls", (object o) => { return new Ball((Dictionary<string, object>)o); });
                }
        }

}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

idlite-0.0.6.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

idlite-0.0.6-py34-none-any.whl (10.0 kB view details)

Uploaded Python 3.4

File details

Details for the file idlite-0.0.6.tar.gz.

File metadata

  • Download URL: idlite-0.0.6.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for idlite-0.0.6.tar.gz
Algorithm Hash digest
SHA256 f31e1e09848efe5340d9339522fdc70cc8bab7bb1a6ca84375675bb6332b7b67
MD5 cc719439aa356163b43e0397c03707ca
BLAKE2b-256 4da7e39ff254d3a8ae6b345c67c8ba691d5c6026b8040ca69d9e29423255228c

See more details on using hashes here.

File details

Details for the file idlite-0.0.6-py34-none-any.whl.

File metadata

File hashes

Hashes for idlite-0.0.6-py34-none-any.whl
Algorithm Hash digest
SHA256 901f26a7e72f2021102e7662b89267a5ee26debd7fc2b7fbc943f234e6151050
MD5 c0fd7456c8f96ac34e4a97f97785a85f
BLAKE2b-256 2b62bc257f23e54503a73ed71cbd7fbc1a26b10e269babf649055feae11804bc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page