Artifact
b7b8dd758e875e446d797b8430a998315f37ab2a:
- File
sdl2/parse-sdl-json.ss
— part of check-in
[242c211156]
at
2018-01-08 17:10:50
on branch trunk
— Initial SDL_Mixer support
(user:
ovenpasta@users.noreply.github.com
size: 7518)
;;
;; Copyright 2016 Aldo Nicolas Bruno
;;
;; Licensed under the Apache License, Version 2.0 (the "License");
;; you may not use this file except in compliance with the License.
;; You may obtain a copy of the License at
;;
;; http://www.apache.org/licenses/LICENSE-2.0
;;
;; Unless required by applicable law or agreed to in writing, software
;; distributed under the License is distributed on an "AS IS" BASIS,
;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;; See the License for the specific language governing permissions and
;; limitations under the License.
(library-directories "~/thunderchez")
(import (scheme)
(json))
(import (only (thunder-utils) string-replace string-split)
(only (srfi s13 strings) string-drop string-downcase string-prefix? string-suffix? string-delete)
(only (srfi s1 lists) fold)
(srfi s14 char-sets))
(define (anti-camel x)
(let* ([x (string-replace x #\_ #\-)]
[len (string-length x)]
[f (lambda (s len)
(list->string
(reverse
(fold (lambda (i acc)
(let ([a (string-ref s i)]
[next (if (< (+ 1 i) len) (string-ref s (+ 1 i)) #f)]
[prev (if (> i 0) (string-ref s (- i 1)) #f)])
(if (and (char-upper-case? a) next prev
(not
(or (char=? a #\-) (char=? prev #\-) (char=? next #\-)
(and (char-upper-case? next) (char-upper-case? prev)))))
(cons (char-downcase a) (cons #\- acc))
(cons (char-downcase a) acc)))) '() (iota len)))))])
(define tbl '(("SDL-RWops" "sdl-rw-ops")
("UDPpacket" "udp-packet") ("TCPsocket" "tcp-socket")
("IPaddress" "ip-address") ("UDPsocket" "udp-socket")))
(cond
[(string-prefix? "SDL-GL-" x)
(string-append "sdl-gl-" (f (string-drop x 7) (- len 7)))]
[(string-prefix? "SDL-GL" x)
(string-append "sdl-gl-" (f (string-drop x 6) (- len 6)))]
[(assoc x tbl) => (lambda (y) (cadr y))]
[else (f x len)])))
(define (add-t x)
(let ([xd (string-downcase x)])
(if (and (string-prefix? "sdl-" xd)
(not (or (string-suffix? "*" x) (string-suffix? "-t" x))))
(string-append x "-t")
x)))
(define (add-* x)
(string-append x "*"))
(define (decode-type t)
(if t
(let-json-object t (tag type)
(let ([tag* (if (string? tag) (string->symbol tag) tag)])
(case tag*
[:function-pointer 'void*]
[:int 'int]
[:unsigned-int 'unsigned-int]
[:unsigned-long-long 'unsigned-long-long]
[:unsigned-long 'unsigned-long]
[:long 'long]
[:double 'double]
[:long-double 'long-double]
[:float 'float]
[:pointer (let ([pt (decode-type type)])
(case pt
(char 'string)
(string 'void*)
(void 'void*)
(else
(if (and (pair? pt ) (eq? (car pt) '*))
pt ;; DOUBLE STAR SEEMS NOT SUPPORTED ON CHEZ
`(* ,pt))
#;(string->symbol
(add-*
(symbol->string pt))))))]
[:void 'void]
[:char 'char]
[else (if (symbol? tag*)
(string->symbol
(add-t
(anti-camel
(symbol->string tag*))))
tag*)])))
#f))
(define (decode-param p n)
(let-json-object p (tag name type)
(if (equal? name "")
(list (string-append "arg-" (number->string n)) (decode-type type))
(list name (decode-type type)))))
(define blacklist '(sdl-joystick-instance-id
sdl-joystick-get-device-guid
sdl-joystick-get-guid
sdl-joystick-get-guid-string
sdl-joystick-get-guid-from-string
sdl-game-controller-mapping-for-guid))
(import (only (srfi s13 strings) string-contains))
(define (parse-json-function x m)
(let-json-object x (tag name location return-type parameters)
(if (and (or (string-contains location m)
(and (equal? "sdl" m) (string-contains location "SDL.h")))
(equal? tag "function")
(or (string-prefix? "SDL_" name)
(string-prefix? "SDLNet_" name)
(string-prefix? "IMG_" name)
(string-prefix? "STTF_" name)
(string-prefix? "TTF_" name)))
(cond
[(memq (string->symbol (anti-camel name)) blacklist)
(printf ";;blacklisted probably because it uses a struct as value.\n(define ~d #f)\n" (anti-camel name))]
[else
(printf "(define-sdl-func ~d ~d ~d \"~d\")\n"
(decode-type return-type)
(case name
("SDL_log" "sdl-logn")
(else (anti-camel name)))
(map (lambda (p n) (decode-param p n))
(vector->list parameters)
(iota (vector-length parameters)))
name)]))))
(define sdl2-modules-func
'(assert atomic audio clipboard
cpuinfo endian error events
filesystem hints joystick
keyboard loadso log main messagebox
mouse mutex pixels platform power
rect render rwops surface system
thread timer touch version video gamecontroller gesture sdl))
(define sdl-json-text (read-file "sdl2.json"))
(define sdl-json (string->json sdl-json-text))
(with-output-to-file "sdl2.sexp" (lambda () (pretty-print sdl-json)) 'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdl-json))
'truncate)) (map symbol->string sdl2-modules-func))
(define sdlnet-json-text (read-file "sdl2-net.json"))
(define sdlnet-json (string->json sdlnet-json-text))
(with-output-to-file "sdl2-net.sexp" (lambda () (pretty-print sdlnet-json)) 'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdlnet-json))
'truncate)) '("net"))
(define sdlimage-json-text (read-file "sdl2-image.json"))
(define sdlimage-json (string->json sdlimage-json-text))
(with-output-to-file "sdl2-image.sexp" (lambda () (pretty-print sdlimage-json))
'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdlimage-json))
'truncate)) '("image"))
(define sdlttfs-json-text (read-file "ttf-shim.json"))
(define sdlttfs-json (string->json sdlttfs-json-text))
(with-output-to-file "ttf-shim.sexp" (lambda () (pretty-print sdlttfs-json))
'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdlttfs-json))
'truncate)) '("sttf"))
(define sdlttf-json-text (read-file "sdl2-ttf.json"))
(define sdlttf-json (string->json sdlttf-json-text))
(with-output-to-file "sdl2-ttf-real.sexp" (lambda () (pretty-print sdlttf-json))
'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdlttf-json))
'truncate)) '("ttf"))
;;;;TODO Seriously this should be one function because this
;;;;is a pain in the butt
(define sdlmixer-json-text (read-file "sdl2-mixer.json"))
(define sdlmixer-json (string->json sdlmixer-json-text))
(with-output-to-file "sdl2-mixer.sexp" (lambda () (pretty-print sdlmixer-json))
'truncate)
(for-each (lambda (m)
(with-output-to-file (string-append m "-functions.ss")
(lambda ()
(vector-for-each
(lambda (x)
(parse-json-function x m))
sdlmixer-json))
'truncate)) '("mix"))