;;; guile-2d ;;; Copyright (C) 2013, 2014 David Thompson ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU General Public License as ;;; published by the Free Software Foundation, either version 3 of the ;;; License, or (at your option) any later version. ;;; ;;; This program is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;; General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see ;;; . ;;; Commentary: ;; ;; Font rendering. ;; ;;; Code: (define-module (2d font) #:use-module (srfi srfi-2) #:use-module (srfi srfi-9) #:use-module (system foreign) #:use-module ((sdl sdl) #:prefix SDL:) #:use-module ((sdl ttf) #:prefix SDL:) #:use-module (gl) #:use-module (gl contrib packed-struct) #:use-module (2d color) #:use-module (2d config) #:use-module (2d shader) #:use-module (2d signal) #:use-module (2d texture) #:use-module (2d vector) #:use-module (2d window) #:use-module (2d wrappers gl) #:export (enable-fonts load-font load-default-font font? font-point-size make-label label? label-font label-text label-position label-color draw-label)) ;;; ;;; Font ;;; (define font-shader #f) (define (enable-fonts) (SDL:ttf-init) (set! font-shader (load-shader-program (string-append %pkgdatadir "/shaders/font-vertex.glsl") (string-append %pkgdatadir "/shaders/font-fragment.glsl")))) (define-record-type (make-font ttf point-size) font? (ttf font-ttf) (point-size font-point-size)) (define (load-font filename point-size) "Load the TTF font in FILENAME with the given POINT-SIZE." (if (file-exists? filename) (make-font (SDL:load-font filename point-size) point-size) (error "File not found!" filename))) (define* (load-default-font #:optional (point-size 12)) "Load the guile-2d default TTF font. POINT-SIZE is an optional argument with a default value of 12." (load-font (string-append %pkgdatadir "/fonts/DejaVuSans.ttf") point-size)) (define (render-text font text) "Return a new texture with TEXT rendered using FONT." ;; An empty string will result in a surface value of #f, in which we ;; want to abort the texture creation process. (and-let* ((surface (SDL:render-utf8 (font-ttf font) text (SDL:make-color 255 255 255) #t)) (pixels (SDL:surface-pixels surface)) (texture-id (gl-generate-texture))) (with-gl-bind-texture (texture-target texture-2d) texture-id (gl-texture-parameter (texture-target texture-2d) (texture-parameter-name texture-min-filter) (texture-min-filter nearest)) (gl-texture-parameter (texture-target texture-2d) (texture-parameter-name texture-mag-filter) (texture-mag-filter nearest)) (gl-texture-image-2d (texture-target texture-2d) 0 (pixel-format rgba) (SDL:surface:w surface) (SDL:surface:h surface) 0 (version-1-2 bgra) (color-pointer-type unsigned-byte) pixels)) (make-texture texture-id #f (SDL:surface:w surface) (SDL:surface:h surface) 0 0 1 1))) (define-record-type