SaaSHub helps you find the best software and product alternatives Learn more →
Cl-sdl2 Alternatives
Similar projects and alternatives to cl-sdl2
-
history-of-lisp-parens
a history of Lisp's most notorious artifact, parentheses
-
cl-opengl
cl-opengl is a set of CFFI bindings to the OpenGL, GLU and GLUT APIs.
-
SonarLint
Clean code begins in your IDE with SonarLint. Up your coding game and discover issues early. SonarLint is a free plugin that helps you find & fix bugs and security issues from the moment you start writing code. Install from your favorite IDE marketplace today.
-
processing
Source code for the Processing Core and Development Environment (PDE)
-
-
Mathics
This repository is for archival. Please see https://github.com/Mathics3/mathics-core
-
-
cl-sdl2-ttf
A common lisp wrapper for SDL2_TTF used for loading fonts and creating text assets
-
InfluxDB
Access the most powerful time series database as a service. Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
-
cl-sdl2 reviews and mentions
-
History of Lisp Parentheses (2019)
I dunno, my Lisp code comes back in pretty frequently, but I'm defining new functions, using CLOS, making use of let* or other nifty macros (uiop:nest is occasionally useful), and refactoring when a function gets too large. But compared to horrors I've frequently seen in JavaLand (especially in older code when the more modern practice of extract function refactoring was less common, more laborious, and not really automated), tons of Lisp code I come across from others has been pretty sane as far as indentation and spacing goes.
It seems like a problem mostly handled by style, just because you can easily represent the whole expanded AST in one function definition doesn't mean you should. And sure there are plenty of (in my opinion) not so great examples out there, like it's rather unfortunate that this is the first example for the cl-sdl2 project: https://github.com/lispgames/cl-sdl2/blob/main/examples/basi... (Though on another metric, the longest line is only 96 characters; most of my lines happen to be under 80 but I don't hold myself to that limit, my screen and editor windows support wide lines by default, like >200 characters wide.) The huge nest of with-macros further impedes runtime redefinition and modification, because now sure you can change code and redefine the function, but your game loop isn't going to see any of that on further iterations. At least the other renderer.lisp example is moving in a better direction splitting the game loop up into several draw functions, and you see those have a normal pattern of going out and then back in.
Urbit docs for its language Hoon once called the phenomenon something like "attacking the right margin". I recalled this fosdem paper describing it more https://archive.fosdem.org/2018/schedule/event/urbit/attachm... especially in 6.3.2:
> There are two common syntactic problems in functional languages: closing terminator piles (eg, right parens in Lisp) and indentation creep. A complex function will have a deep AST; if every child node in that AST is indented past its parent, any interesting code tends to creep toward the right margin. To solve terminator piles, there are two forms of every Hoon twig: “tall” and “flat”, ie, multiline and single-line. Tall twigs can contain flat twigs, but not vice versa, mimicking the look of “statements” and “expressions” in an imperative language. Flat form is enclosed by parentheses and separated by a single space; tall form is separated by multiple spaces or a newline, and (in most cases) not enclosed at all. ...
> Right-margin creep is prevented by backstep indentation; where a classical
-
sketch, sdl2, c2ffi on M1 Mac?
First thing, I followed the instructions here: https://github.com/lispgames/cl-sdl2/issues/154
-
Using Common Lisp to do GPU accelerated animations
Use CL-SDL2 (https://github.com/lispgames/cl-sdl2) for simple 2d rendering. It's both GPU-accelerated and portable to many platforms. You can use CL-SDL2 along with CL-OPENGL (https://github.com/3b/cl-opengl) for OpenGL programming, provided you have knowledges about 2d/3d graphics programming.
-
A note from our sponsor - #<SponsorshipServiceOld:0x00007f160d2295c8>
www.saashub.com | 31 Mar 2023
Stats
lispgames/cl-sdl2 is an open source project licensed under MIT License which is an OSI approved license.