All Projects → vydd → Sketch

vydd / Sketch

Licence: mit
A Common Lisp framework for the creation of electronic art, visual design, game prototyping, game making, computer graphics, exploration of human-computer interaction, and more.

Projects that are alternatives of or similar to Sketch

Pixieditor
PixiEditor is a lightweight pixel art editor made with .NET 5
Stars: ✭ 210 (-79.53%)
Mutual labels:  games, graphics, 2d
Shadergen
Proof-of-concept library for generating HLSL, GLSL, and Metal shader code from C#,
Stars: ✭ 395 (-61.5%)
Mutual labels:  games, graphics
Jglm
Java OpenGL Mathematics Library
Stars: ✭ 44 (-95.71%)
Mutual labels:  games, graphics
Cdogs Sdl
Classic overhead run-and-gun game
Stars: ✭ 422 (-58.87%)
Mutual labels:  games, 2d
WildWorld
Sandbox freestyle multiplayer game/engine in LÖVE/LUA.
Stars: ✭ 35 (-96.59%)
Mutual labels:  games, 2d
Photosketch
Code for Photo-Sketching: Inferring Contour Drawings from Images 🐶
Stars: ✭ 278 (-72.9%)
Mutual labels:  graphics, sketch
Pts
A library for visualization and creative-coding
Stars: ✭ 4,628 (+351.07%)
Mutual labels:  graphics, art
Sfml
Simple and Fast Multimedia Library
Stars: ✭ 7,316 (+613.06%)
Mutual labels:  games, graphics
Draw2d
2D rendering for different output (raster, pdf, svg)
Stars: ✭ 799 (-22.12%)
Mutual labels:  graphics, 2d
Pixelvision8
Pixel Vision 8's core philosophy is to teach retro game development with streamlined workflows. PV8 is also a platform that standardizes 8-bit fantasy console limitations built on top of the open-source C# game engine based on MonoGame.
Stars: ✭ 773 (-24.66%)
Mutual labels:  games, 2d
glitch-studio
data bending & glitch tools
Stars: ✭ 66 (-93.57%)
Mutual labels:  art, visual
Imgui.net
An ImGui wrapper for .NET.
Stars: ✭ 848 (-17.35%)
Mutual labels:  games, graphics
Fractal Engine
WIP 3D game engine with editor and other stuff
Stars: ✭ 152 (-85.19%)
Mutual labels:  games, 2d
Fxglgames
This repo contains sample games built with FXGL
Stars: ✭ 363 (-64.62%)
Mutual labels:  games, 2d
MultiGame
MultiGame is a tool for rapid development in Unity
Stars: ✭ 16 (-98.44%)
Mutual labels:  art, games
Oblivion
The language of Art
Stars: ✭ 414 (-59.65%)
Mutual labels:  graphics, art
Magictools
🎮 📝 A list of Game Development resources to make magic happen.
Stars: ✭ 8,853 (+762.87%)
Mutual labels:  games, art
Opendiablo2
An open source re-implementation of Diablo 2
Stars: ✭ 10,057 (+880.21%)
Mutual labels:  games, 2d
Mathc
Pure C math library for 2D and 3D programming
Stars: ✭ 504 (-50.88%)
Mutual labels:  graphics, 2d
Sprite
Sketch 3 Plugin that makes SpriteSheets for game developers to export or use
Stars: ✭ 23 (-97.76%)
Mutual labels:  graphics, sketch
  • Sketch

[[http://quickdocs.org/sketch/][file:http://quickdocs.org/badge/sketch.svg]]

Sketch is a Common Lisp environment for the creation of electronic art, visual design, game prototyping, game making, computer graphics, exploration of human-computer interaction and more. It is inspired by [[https://processing.org][Processing Language]] and shares some of the API.

[[http://i.imgur.com/MNZUwz8.png]]

** Installation

Since April 2016, Sketch is available in [[https://www.quicklisp.org/beta/][Quicklisp]], Common Lisp's de facto package manager. This makes getting and running Sketch as easy as

#+BEGIN_SRC lisp (ql:quickload :sketch) #+END_SRC

To make Sketch run correctly, though, a few requirements must be met.

*** Requirements **** Common Lisp Implementation Sketch should be compatible with all major Common Lisp implementations and all major operating systems - more specifically, all CL implementations and operating systems that [[https://github.com/lispgames/cl-sdl2][cl-sdl2]] runs on. Incompatibility with any of those is considered a bug.

Sketch is known to work with:

  • CCL 1.11 on Mac OS X El Capitan
  • CCL SVN 1.12.dev.r16617 on Arch Linux
  • CCL 1.11 on Windows 10 64bit
  • SBCL on Debian Unstable
  • SBCL 1.2.16 on Arch Linux
  • SBCL 1.3.1 on Linux Mint 17
  • SBCL 1.3.6 on Windows 10 64bit

Sketch is known to not work with:

  • SBCL 1.2.15 on Mac OS X /Sketch can't handle input and the window's titlebar is black. These kinds of issues are a known problem with Mac OS X, because it needs its GUI threads to be main, and CCL is the only lisp that accounts for that out of the box. There are ways to counter this, but until a solution finds its way into this repository, SBCL on Mac OS X will stay on this list. In the meantime, use CCL./

If you test Sketch on other systems, please send a pull request to include your results.

**** Foreign dependencies ***** SDL2 SDL2 is currently Sketch's only backend. It is a C library which you will need to download manually from [[https://www.libsdl.org][libsdl webpage]]. Select the release compatible with your operating system, or compile from the source code.

***** SDL2 Image & SDL2 TTF For loading image and font files, Sketch relies on SDL2 Image and SDL2 TTF, respectively, both part of the SDL project.

***** libffi Some users have reported that [[https://sourceware.org/libffi/][libffi]] needed to be installed to make Sketch work.

***** OpenGL Sketch requires graphics hardware and drivers with support for GL version 3.3.

**** Installing and running Sketch on Windows Sketch works on both CCL and SBCL, but installing all prerequisites might not be as straightforward as it is on the other platforms.

***** Libraries Download SDL2, SDL2_IMAGE and SDL2_TTF dlls from [[https://www.libsdl.org][libsdl webpage]] and copy them somewhere Windows can find them - =\Windows\System32= will work. When copying SDL2_TTF, make sure to copy all of the dlls provided in the archive, and not just the TTF one.

Now you will need to get a libffi dll. One of the ways of doing this is compiling from the source, but for a quick and easy solution, you can just find a trusted source and use their version. For example, if you are using Emacs on Windows, you can find =libffi-6.dll= in =emacs\bin=. Copy it to the same directory you copied sdl2 dlls to earlier.

***** GCC To bootstrap cffi-libffi, you are going to need a C compiler, more specifically the one from the GNU Compiler Collection. Also, libffi headers and pkg-config are needed. Luckily, you can get all these things (and more) with MSYS2. Go to [[https://msys2.github.io]] and follow the instructions for installing the 64bit version.

From its console, install gcc, libffi headers and pkg-config by running =pacman -S gcc libffi libffi-devel pkg-config=.

***** Environment variables From the Control Panel, open System properties, go to the Advanced tab, and click "Environment Variables..." - or click the Start button, start typing "environment" and select "Edit the system environment variables".

Double click "Path" from the list of System variables and make sure that both your lisp implementation's path (something like =C:\Program Files\Steel Bank Common Lisp\1.3.6=) and MSYS path (probably =C:\msys64\usr\bin=) are listed. If not, click "New" and add them now.

If you needed to change anything here, restart the computer now.

***** SLIME If you are using SLIME, you won't be able to load or run Sketch if you start SWANK from emacs (by running =M-x slime=). Instead, you should open the Command Prompt (the regular one, not MSYS), start your lisp and eval =(ql:quickload :swank)= =(swank:create-server)=. From Emacs, type =M-x slime-connect=, and finally, press enter twice (for localhost and port 4005).

If you did everything correctly, you should be able to =(ql:quickload :sketch)= and move on to the tutorial.

**** If you are obtaining Sketch from this repository, instead of using Quicklisp releases Please make sure to also get the following libraries to your =local-projects= directory. This is not necessary otherwise.

  • [[https://github.com/lispgames/cl-sdl2]]
  • [[https://github.com/lispgames/sdl2kit]]

*** Running provided examples To get a feel for what Sketch can do, and also to make sure that everything has been installed correctly, you can look at the examples. The code below will run all four currently provided examples at once. Note that on older machines running four sketches at once might result in a small degradation in performance, so you might want to run sketches separately.

#+BEGIN_SRC lisp CL-USER> (ql:quickload :sketch-examples) CL-USER> (make-instance 'sketch-examples:hello-world) CL-USER> (make-instance 'sketch-examples:sinewave) CL-USER> (make-instance 'sketch-examples:brownian) CL-USER> (make-instance 'sketch-examples:life) ; Click to toggle cells, ; any key to toggle iteration #+END_SRC

*** Running example code from this page In all the following examples, we're going to assume that Sketch is loaded with =(ql:quickload :sketch)=, and that we're in package =:TUTORIAL=, which is set to use =:SKETCH=.

#+BEGIN_SRC lisp CL-USER> (ql:quickload :sketch) CL-USER> (defpackage :tutorial (:use :cl :sketch)) CL-USER> (in-package :tutorial) TUTORIAL> ;; ready #+END_SRC

** Tutorial /NOTE: This tutorial is using the revised/ =DEFSKETCH= /macro, introduced in May 2016. Until this release hits Quicklisp, you'll have to install Sketch manually to your/ =local-projects= /directory, along with https://github.com/lispgames/cl-sdl2 and https://github.com/lispgames/sdl2kit. More about this [[https://github.com/vydd/sketch/issues/12][here]]./

Defining sketches is done with the =DEFSKETCH= macro, that wraps =DEFCLASS=. Using =DEFCLASS= is still possible, but =DEFSKETCH= makes everything so much easier, and in these examples, we're going to pretend that's the only way.

#+BEGIN_SRC lisp (defsketch tutorial ()) (make-instance 'tutorial) #+END_SRC

If all goes well, this should give you an unremarkable gray window.

*** Shapes Let's draw something!

#+BEGIN_SRC lisp (defsketch tutorial () (rect 100 100 200 200)) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (dotimes (i 10) (rect (* i 40) (* i 40) 40 40))) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (dotimes (i 10) (rect 0 (* i 40) (* (+ i 1) 40) 40))) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (dotimes (i 10) (rect 0 (* i 40) (* (+ i 1) 40) 40)) (circle 300 100 50)) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (line 0 0 400 400) (line 400 0 0 400)) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (polyline 100 100 200 150 300 100 200 200 100 100)) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (polygon 100 100 200 150 300 100 200 200)) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (dotimes (i 4) (ngon (+ i 3) (+ 50 (* i 100)) 200 20 20 (* i 20)))) #+END_SRC

#+BEGIN_SRC lisp (defsketch tutorial () (bezier 0 400 100 100 300 100 400 400)) #+END_SRC

*** Colors Grayscale imagery is nice, but let's add color and make our sketch more vibrant. Assuming that you're using Emacs + SLIME, or a similarly capable environment, you can just re-evaluate with the following code:

#+BEGIN_SRC lisp (defsketch tutorial () (background +yellow+)) #+END_SRC

The window becomes yellow. There are a couple of things to note. Drawing code doesn't need to go into a special function or method, or be binded to a sketch explicitly. =DEFSKETCH= is defined as =(defsketch sketch-name bindings &body body)=: that body is your drawing code. We will get to =BINDINGS= later. The other thing is that Sketch comes with its own color library.

**** Predefined colors There are constants for commonly used colors: =+RED+=, =+GREEN+=, =+BLUE+=, =+YELLOW+=, =+MAGENTA+=, =+CYAN+=, =+ORANGE+= =+WHITE+=, and =+BLACK+=.

**** RGB, HSB, GRAY If you want to be more specific about the colors you want, you are welcome to use =(rgb red green blue &optional (alpha 1.0))=, =(hsb hue saturation brightness &optional (alpha 1.0))= or =(gray amount &optional (alpha 1.0))=. The arguments to these functions are values from 0 to 1. You can use these functions in the same way you just used =+YELLOW+=. Hopefully the function names and their arguments are self-explanatory, but if not, you can learn about the RGB color model [[https://en.wikipedia.org/wiki/RGB_color_model][here]] and about HSB (also called HSV) [[https://en.wikipedia.org/wiki/HSL_and_HSV][here]]. =(gray amount &optional (alpha 1.0))= is really just a convenient alias for =(rgb amount amount amount &optional (alpha 1.0))=, and can be used for brevity when a shade of gray needs to be defined.

/This might be a good place to note that function names in Sketch use the American English spellings, like "gray" and "color". It's just a choice that needed to be made, in pursue of uniformity and good style./

#+BEGIN_SRC lisp (defsketch tutorial () (background (rgb 1 1 0.5))) #+END_SRC

This will give you a lighter yellow.

All functions have an additional, =ALPHA= parameter. It determines the amount of transparency that the color should have.

**** RGB-255, HSB-360, GRAY-255 Sometimes it's easier to think about color values in non-normalized ranges. That's why Sketch offers =RGB-255=, =HSB-360=, and =GRAY-255=.

This is how these functions map to their normalized variants.

| (rgb-255 r g b a) | (rgb (/ r 255) (/ g 255) (/ b 255) (/ a 255)) | | (hsb-360 h s b a) | (hsb (/ h 360) (/ s 100) (/ b 100) (/ a 255)) | | (gray-255 g a) | (gray (/ g 255) (/ a 255)) |

=HSB-360= is using different ranges, because hue is represented in degrees (0-360), and saturation and brightness are represented as percentages (0-100).

**** HEX-TO-COLOR If you are used to working with colors in hex, like in CSS, you can use =(hex-to-color string)=, where =STRING= is the color in one of the following formats: "4bc", "#4bc", "4bcdef", and "#4bcdef".

**** Generating colors If you don't care about fiddling with the exact values, but still need different colors, you can use one of the following functions.

***** =(lerp-color (start-color end-color amount &key (mode :hsb)))= Lerping is a fancy way of saying [[https://en.wikipedia.org/wiki/Linear_interpolation][linear interpolation]]. This function takes the starting color and the ending color, and returns the color between them, which is an =AMOUNT= away from the starting color. When =AMOUNT= equals zero, the returned color equals the starting color, and when =AMOUNT= equals one, the ending color is returned. Amounts between zero and one give colors that are "in-between". These colors are calculated according to the specified =MODE=, which is =:HSB= by default, meaning that the resulting color's hue is between the starting and ending hue, as is the case with its saturation and brightness.

#+BEGIN_SRC lisp (defsketch lerp-test ((title "lerp-color") (width 400) (height 100)) (dotimes (i 4) (with-pen (make-pen :fill (lerp-color +red+ +yellow+ (/ i 4))) (rect (* i 100) 0 100 100)))) #+END_SRC

***** =(random-color (&optional (alpha 1.0)))= Returns a random color. You probably don't want to use this, because much of the returned colors are either too dark, or too light. You do get to choose the =ALPHA= value, though.

#+BEGIN_SRC lisp (defparameter colors (loop for i below 16 collect (random-color)))

(defsketch random-color-test ((title "random-color") (width 400) (height 100)) (dotimes (x 8) (dotimes (y 2) (with-pen (make-pen :fill (elt colors (+ x (* y 8)))) (rect (* x 50) (* y 50) 50 50))))) #+END_SRC

***** =(hash-color (n &optional (alpha 1.0)))= This is probably the function you're looking for, if you just want to create a non-repeating set of colors quickly. It maps all numbers to "interesting" (not too dark, not too light) colors. You can use this for coloring procedurally generated objects, when prototyping and just trying to make things look different quickly, when making palettes, looking for "the right" color, and many other things.

#+BEGIN_SRC lisp (defsketch hash-color-test ((title "hash-color") (width 400) (height 100)) (dotimes (i 128) (with-pen (make-pen :fill (hash-color i)) (rect (* i (/ 400 128)) 0 (/ 400 128) 100)))) #+END_SRC

**** Color filters Sometimes you have a color, and would like to transform it in some way. That's what color filters are for.

***** Grayscale To convert colors to grayscale, you can use =color-filter-grayscale=. Two modes of grayscale conversion are implemented:

  • =:luminosity=, the default, which is [[https://en.wikipedia.org/wiki/Grayscale#Colorimetric_.28luminance-preserving.29_conversion_to_grayscale][luminance-preserving]]
  • =:average=, which sets all color channels to their average

#+BEGIN_SRC lisp (defsketch grayscale-test ((title "grayscale") (width 400) (height 300)) (dotimes (i 10) (let ((color (hash-color i))) (with-pen (make-pen :fill (color-filter-grayscale color)) (rect (* i 40) 0 40 100)) (with-pen (make-pen :fill color) (rect (* i 40) 100 40 100)) (with-pen (make-pen :fill (color-filter-grayscale color :average)) (rect (* i 40) 200 40 100))))) #+END_SRC

***** Invert To invert a color, use =color-filter-invert=:

#+BEGIN_SRC lisp (defsketch invert-test ((title "invert") (width 300) (height 300) (i 0)) (background +white+) (incf i 0.01) (let ((color (rgb (abs (sin i)) (abs (cos i)) 0))) (with-pen (make-pen :fill color) (circle 100 150 50)) (with-pen (make-pen :fill (color-filter-invert color)) (circle 200 150 50)))) #+END_SRC

***** Rotate Rotating a color in Sketch using =color-filter-rotate= sets the value of its red channel to the previous value of the green channel; green to blue, and blue to red. The operation is intended to be used in palette generation, because the rotated colors usually work pretty well together.

#+BEGIN_SRC lisp (defsketch rotate-test ((title "rotate") (width 300) (height 300) (i 0) (color (rgb 0.2 0.8 1.0))) (background +white+) (incf i 1) (when (zerop (mod i 60)) (setf color (color-filter-rotate color))) (with-pen (make-pen :fill color) (rect 100 100 100 100))) #+END_SRC

***** HSB [[https://en.wikipedia.org/wiki/HSL_and_HSV][HSB]] stands for Hue/Saturation/Brightness. You can use =color-filter-hsb= to adjust hue, saturation and brightness of an existing color.

#+BEGIN_SRC lisp (defsketch hsb-test ((title "hsb") (width 400) (height 300) (color (rgb 0.2 0.5 0.6))) (dotimes (i 4) (with-pen (make-pen :fill (color-filter-hsb color :hue (* 0.1 (+ i 1)))) (rect (* i 100) 0 100 100)) (with-pen (make-pen :fill (color-filter-hsb color :saturation (* 0.1 (+ i 1)))) (rect (* i 100) 100 100 100)) (with-pen (make-pen :fill (color-filter-hsb color :brightness (* 0.1 (+ i 1)))) (rect (* i 100) 200 100 100)))) #+END_SRC

*** Pens Pens are used to draw shapes. If no pen is specified, the default pen sets =:fill= to white, =:stroke= to black, and =weight= to 1.

***** Creating and Using Pens Say you want to draw a red square and a blue circle. You would need to use two different pens. #+BEGIN_SRC lisp (defsketch pen-test ((title "pens")) (with-pen (make-pen :fill +red+) (rect 100 100 100 100)) ; this rect will be red (with-pen (make-pen :fill +blue+) (circle 315 315 50))) ; this rect will be blue #+END_SRC

***** Fill/Stroke The squares in the previous example were filled because we specified the =:fill= property in =make-pen=. If we wanted to just draw the outline of the square, we would use =:stroke= like this: #+BEGIN_SRC lisp (defsketch outline-square ((title "Outline Square")) (with-pen (make-pen :stroke +red+) (rect 100 100 100 100))) #+END_SRC #+BEGIN_SRC lisp (defsketch fill-stroke ((title "Fill and Stroke")) (background +white+) (with-pen (make-pen :stroke (rgb .5 0 .6) :fill (rgb 0 .8 .8)) (rect 50 50 100 75) (circle 300 220 100))) #+END_SRC

***** Weight We can also change the thickness of the lines and shapes that we draw by changing the pen =:weight=. #+BEGIN_SRC lisp (defsketch weight-test ((title "Weight Test")) (dotimes (i 10) (with-pen (make-pen :stroke +white+ :weight (+ i 1)) ; pen weight can't be zero (line 50 (* i 20) 350 (* i 20))))) #+END_SRC

**** Curve-steps =:curve-steps= is used to change the smoothness (resolution) of curves like =#'bezier=. #+BEGIN_SRC lisp (defsketch curve-test ((title "Curve-steps")) (dotimes (i 99) (with-pen (make-pen :stroke +red+ :curve-step (+ i 1)) ; as curve-step increases, curve becomes "smoother" (bezier 0 400 100 100 300 100 400 400)))) #+END_SRC

*** Transforms TODO

*** Text TODO

*** Images TODO

*** Bindings TODO

*** Input TODO

** Made with Sketch

  • [[https://vydd.itch.io/qelt][QELT]]
  • [[https://bitbucket.org/sjl/coding-math][sjl's implementation of coding math videos]]
  • [[http://git.axity.net/axion/crawler2][Visual examples for axion's crawler2 library]]

** FAQ *** I'm trying to compile my defsketch definition, but it keeps telling me that :TITLE (or :WIDTH, :HEIGHT, etc.) is not of the expected type LIST. Why is this happening? You're probably trying to use the old way of defining sketches - =(defsketch name window-parameters slot-bindings &body body)=. =DEFSKETCH= has been changed to =(defsketch name bindings &body body)=. It's still possible to define the title and other window parameters, though.

Example:

#+BEGIN_SRC lisp (defsketch foo (:title "Foo" :width 400) ((a 3)) (rect 100 100 200 200))

;;; Becomes

(defsketch foo ((title "Foo") (width 400) (a 3)) (rect 100 100 200 200)) #+END_SRC

For more, read about "Bindings" in the tutorial above.

** Outro For everything else, read the code or ask vydd at #lispgames.

Go make something pretty!

** License

Copyright (c) 2015, 2016, 2017 Danilo Vidovic (vydd)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].