little things

This commit is contained in:
Adam D. Ruppe 2021-09-28 14:31:37 -04:00
parent 059adfcc66
commit b6fffd1a82
6 changed files with 28 additions and 6 deletions

2
cgi.d
View File

@ -6028,7 +6028,7 @@ version(cgi_with_websocket) {
if(d.length < 8) return needsMoreData();
foreach(i; 0 .. 8) {
msg.realLength |= d[0] << ((7-i) * 8);
msg.realLength |= ulong(d[0]) << ((7-i) * 8);
d = d[1 .. $];
}
} else {

7
dom.d
View File

@ -1239,6 +1239,7 @@ class Document : FileResource, DomParent {
return e;
}
/// ditto
final MaybeNullElement!SomeElementType optionSelector(SomeElementType = Element)(string selector, string file = __FILE__, size_t line = __LINE__)
if(is(SomeElementType : Element))
{
@ -2306,6 +2307,12 @@ class Element : DomParent {
Note: you can give multiple selectors, separated by commas.
It will return the first match it finds.
Tip: to use namespaces, escape the colon in the name:
---
element.querySelector(`ns\:tag`); // the backticks are raw strings then the backslash is interpreted by querySelector
---
+/
@scriptable
Element querySelector(string selector) {

1
game.d
View File

@ -1,3 +1,4 @@
// i could add a "time" uniform for the shaders automatically. unity does a float4 i think with ticks in it
// register cheat code? or even a fighting game combo..
/++
An add-on for simpledisplay.d, joystick.d, and simpleaudio.d

View File

@ -4,7 +4,9 @@
Pass `-version=ps1_style` or `-version=xbox_style` to pick your API style - the constants will use the names of the buttons on those controllers and attempt to emulate the other. ps1_style is compatible with more hardware and thus the default. XBox controllers work with either, though.
The docs for this file are quite weak, I suggest you view source of [arsd.gamehelers] for an example of how it might be used.
The docs for this file are quite weak, I suggest you view source of [arsd.game] for an example of how it might be used.
FIXME: on Linux, certain controller brands will not be recognized and you need to set the mappings yourself, e.g., `version(linux) joystickMapping[0] = &xbox360Mapping;`. I will formalize this into a proper api later.
+/
/*

View File

@ -8486,6 +8486,11 @@ struct ScreenPainter {
/++
start and finish are units of degrees * 64
History:
The Windows implementation didn't match the Linux implementation until September 24, 2021.
They still don't exactly match in outlining the arc with straight lines (Windows does, Linux doesn't for now).
+/
void drawArc(Point upperLeft, int width, int height, int start, int finish) {
if(impl is null) return;
@ -10205,10 +10210,10 @@ version(Windows) {
float startAngle = cast(float) start / 64.0 / 180.0 * 3.14159265358979323;
float endAngle = cast(float) finish / 64.0 / 180.0 * 3.14159265358979323;
auto c1 = cast(int)(cos(startAngle) * width / 2 + x1 + width / 2);
auto c2 = cast(int)(-sin(startAngle) * height / 2 + y1 + height / 2);
auto c3 = cast(int)(cos(endAngle) * width / 2 + x1 + width / 2);
auto c4 = cast(int)(-sin(endAngle) * height / 2 + y1 + height / 2);
auto c1 = cast(int) roundf(cos(startAngle) * width / 2 + x1 + width / 2);
auto c2 = cast(int) roundf(-sin(startAngle) * height / 2 + y1 + height / 2);
auto c3 = cast(int) roundf(cos(endAngle) * width / 2 + x1 + width / 2);
auto c4 = cast(int) roundf(-sin(endAngle) * height / 2 + y1 + height / 2);
if(_activePen.color.a)
Arc(hdc, x1, y1, x1 + width + 1, y1 + height + 1, c1, c2, c3, c4);

View File

@ -27,6 +27,13 @@
*/
module arsd.terminalemulator;
/+
FIXME
terminal optimization:
first invalidated + last invalidated to slice the array
when looking for things that need redrawing.
+/
import arsd.color;
import std.algorithm : max;