forked from TatriX/cl-sdl2-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11-clip-rendering-and-sprite-sheets.lisp
91 lines (79 loc) · 3.32 KB
/
11-clip-rendering-and-sprite-sheets.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
(defpackage #:sdl2-tutorial-11-clip-rendering-and-sprite-sheets
(:use :cl)
(:export :run)
(:import-from :sdl2-tutorial-utils :asset-pathname))
(in-package :sdl2-tutorial-11-clip-rendering-and-sprite-sheets)
(defparameter *screen-width* 640)
(defparameter *screen-height* 480)
(defclass tex ()
((renderer
:initarg :renderer
:initform (error "Must supply a renderer"))
(width
:accessor tex-width
:initform 0 )
(height
:accessor tex-height
:initform 0)
(texture
:accessor tex-texture
:initform nil)))
(defun load-texture-from-file (renderer pathname)
(let ((tex (make-instance 'tex :renderer renderer)))
(with-slots (renderer texture width height) tex
(let ((surface (sdl2-image:load-image pathname)))
(setf width (sdl2:surface-width surface))
(setf height (sdl2:surface-height surface))
(sdl2:set-color-key surface :true (sdl2:map-rgb (sdl2:surface-format surface)
0 #xFF #xFF))
(setf texture (sdl2:create-texture-from-surface renderer surface))
(sdl2:free-surface surface)))
tex))
(defun render (tex x y &key clip)
(with-slots (renderer texture width height) tex
(sdl2:render-copy renderer
texture
:source-rect clip
:dest-rect (sdl2:make-rect x
y
(if clip (sdl2:rect-width clip) width)
(if clip (sdl2:rect-height clip) height)))))
(defmacro with-window-renderer ((window renderer) &body body)
`(sdl2:with-init (:video)
(sdl2:with-window (,window
:title "SDL2 Tutorial 11"
:w *screen-width*
:h *screen-height*
:flags '(:shown))
(sdl2:with-renderer (,renderer ,window :index -1 :flags '(:accelerated))
,@body))))
(defun run ()
(with-window-renderer (window renderer)
(sdl2-image:init '(:png))
(let ((spritesheet-tex (load-texture-from-file renderer (asset-pathname #P"assets/11/spritesheet.png")))
(top-left (sdl2:make-rect 0 0 100 100))
(top-right (sdl2:make-rect 100 0 100 100))
(bottom-left (sdl2:make-rect 0 100 100 100))
(bottom-right (sdl2:make-rect 100 100 100 100)))
(sdl2:with-event-loop (:method :poll)
(:quit () t)
(:idle ()
(sdl2:set-render-draw-color renderer #xFF #xFF #xFF #xFF)
(sdl2:render-clear renderer)
(render spritesheet-tex
0
0
:clip top-left)
(render spritesheet-tex
(- *screen-width* (sdl2:rect-width top-right))
0
:clip top-right)
(render spritesheet-tex
0
(- *screen-height* (sdl2:rect-height bottom-left))
:clip bottom-left)
(render spritesheet-tex
(- *screen-width* (sdl2:rect-width bottom-right))
(- *screen-height* (sdl2:rect-height bottom-right))
:clip bottom-right)
(sdl2:render-present renderer))))))