mirror of https://github.com/adamdruppe/arsd.git
BREAKING CHANGE: add package to simpledisplay and terminal
This commit is contained in:
parent
ad9eb11ee6
commit
2ee3c8d61c
2
bmp.d
2
bmp.d
|
@ -379,7 +379,7 @@ void writeBmp(MemoryImage img, string filename) {
|
||||||
|
|
||||||
/+
|
/+
|
||||||
void main() {
|
void main() {
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
//import std.file;
|
//import std.file;
|
||||||
//auto img = readBmp(cast(ubyte[]) std.file.read("/home/me/test2.bmp"));
|
//auto img = readBmp(cast(ubyte[]) std.file.read("/home/me/test2.bmp"));
|
||||||
auto img = readBmp("/home/me/test2.bmp");
|
auto img = readBmp("/home/me/test2.bmp");
|
||||||
|
|
2
color.d
2
color.d
|
@ -1080,7 +1080,7 @@ img = imageFromPng(readPng(range.range)).getAsTrueColorImage;
|
||||||
|
|
||||||
auto qimg = quantize(img, null, 2);
|
auto qimg = quantize(img, null, 2);
|
||||||
|
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
auto win = new SimpleWindow(img.width, img.height * 3);
|
auto win = new SimpleWindow(img.width, img.height * 3);
|
||||||
auto painter = win.draw();
|
auto painter = win.draw();
|
||||||
painter.drawImage(Point(0, 0), Image.fromMemoryImage(img));
|
painter.drawImage(Point(0, 0), Image.fromMemoryImage(img));
|
||||||
|
|
|
@ -63,7 +63,7 @@
|
||||||
module arsd.gamehelpers;
|
module arsd.gamehelpers;
|
||||||
|
|
||||||
public import arsd.color;
|
public import arsd.color;
|
||||||
public import simpledisplay;
|
public import arsd.simpledisplay;
|
||||||
|
|
||||||
import std.math;
|
import std.math;
|
||||||
public import core.time;
|
public import core.time;
|
||||||
|
|
|
@ -163,7 +163,7 @@ class DataView : Widget {
|
||||||
|
|
||||||
// FIXME: menus should prolly capture the mouse. ugh i kno.
|
// FIXME: menus should prolly capture the mouse. ugh i kno.
|
||||||
|
|
||||||
public import simpledisplay;
|
public import arsd.simpledisplay;
|
||||||
|
|
||||||
version(Windows)
|
version(Windows)
|
||||||
import core.sys.windows.windows;
|
import core.sys.windows.windows;
|
||||||
|
|
4
png.d
4
png.d
|
@ -24,7 +24,7 @@ void writePng(string filename, MemoryImage mi) {
|
||||||
//Here's a simple test program that shows how to write a quick image viewer with simpledisplay:
|
//Here's a simple test program that shows how to write a quick image viewer with simpledisplay:
|
||||||
|
|
||||||
import arsd.png;
|
import arsd.png;
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
|
|
||||||
import std.file;
|
import std.file;
|
||||||
void main(string[] args) {
|
void main(string[] args) {
|
||||||
|
@ -939,7 +939,7 @@ struct Color {
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//import simpledisplay;
|
//import arsd.simpledisplay;
|
||||||
|
|
||||||
struct RgbaScanline {
|
struct RgbaScanline {
|
||||||
Color[] pixels;
|
Color[] pixels;
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d
|
// dmd example.d simpledisplay.d color.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
import std.conv;
|
import std.conv;
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
|
@ -155,7 +155,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d
|
// dmd example.d simpledisplay.d color.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
|
|
||||||
enum paddleMovementSpeed = 8;
|
enum paddleMovementSpeed = 8;
|
||||||
enum paddleHeight = 48;
|
enum paddleHeight = 48;
|
||||||
|
@ -300,7 +300,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d
|
// dmd example.d simpledisplay.d color.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
void main() {
|
void main() {
|
||||||
auto window = new SimpleWindow(200, 200);
|
auto window = new SimpleWindow(200, 200);
|
||||||
window.eventLoop(0,
|
window.eventLoop(0,
|
||||||
|
@ -330,7 +330,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d
|
// dmd example.d simpledisplay.d color.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
void main() {
|
void main() {
|
||||||
auto window = new SimpleWindow(200, 200);
|
auto window = new SimpleWindow(200, 200);
|
||||||
{ // introduce sub-scope
|
{ // introduce sub-scope
|
||||||
|
@ -365,7 +365,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d
|
// dmd example.d simpledisplay.d color.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
|
|
||||||
|
@ -377,7 +377,7 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
// dmd example.d simpledisplay.d color.d png.d
|
// dmd example.d simpledisplay.d color.d png.d
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
import arsd.png;
|
import arsd.png;
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
|
@ -404,7 +404,7 @@
|
||||||
The pulse timeout is used by setting a non-zero interval as the first argument to `eventLoop` function and adding a zero-argument delegate to handle the pulse.
|
The pulse timeout is used by setting a non-zero interval as the first argument to `eventLoop` function and adding a zero-argument delegate to handle the pulse.
|
||||||
|
|
||||||
---
|
---
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
auto window = new SimpleWindow(400, 400);
|
auto window = new SimpleWindow(400, 400);
|
||||||
|
@ -430,7 +430,7 @@
|
||||||
The pulse timer and instances of the $(LREF Timer) class may be combined at will.
|
The pulse timer and instances of the $(LREF Timer) class may be combined at will.
|
||||||
|
|
||||||
---
|
---
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
auto window = new SimpleWindow(400, 400);
|
auto window = new SimpleWindow(400, 400);
|
||||||
|
@ -526,7 +526,7 @@
|
||||||
PITFALL=<div class="pitfall">$0</div>
|
PITFALL=<div class="pitfall">$0</div>
|
||||||
WARNING=<div class="warning">$0</div>
|
WARNING=<div class="warning">$0</div>
|
||||||
+/
|
+/
|
||||||
module simpledisplay;
|
module arsd.simpledisplay;
|
||||||
|
|
||||||
// FIXME: icons on Windows don't look quite right, I think the transparency mask is off.
|
// FIXME: icons on Windows don't look quite right, I think the transparency mask is off.
|
||||||
|
|
||||||
|
@ -1866,7 +1866,7 @@ version(without_opengl) {
|
||||||
See more: <a href="#topics-3d">in the 3d topic</a>.
|
See more: <a href="#topics-3d">in the 3d topic</a>.
|
||||||
|
|
||||||
---
|
---
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
void main() {
|
void main() {
|
||||||
auto window = new SimpleWindow(500, 500, "OpenGL Test", OpenGlOptions.yes);
|
auto window = new SimpleWindow(500, 500, "OpenGL Test", OpenGlOptions.yes);
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@ struct TtfFont {
|
||||||
int main(string[] args)
|
int main(string[] args)
|
||||||
{
|
{
|
||||||
import std.conv;
|
import std.conv;
|
||||||
import simpledisplay;
|
import arsd.simpledisplay;
|
||||||
int c = (args.length > 1 ? to!int(args[1]) : 'a'), s = (args.length > 2 ? to!int(args[2]) : 20);
|
int c = (args.length > 1 ? to!int(args[1]) : 'a'), s = (args.length > 2 ? to!int(args[2]) : 20);
|
||||||
import std.file;
|
import std.file;
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
* Do a full TUI widget set. I might do some basics and lay a little groundwork, but a full TUI
|
* Do a full TUI widget set. I might do some basics and lay a little groundwork, but a full TUI
|
||||||
is outside the scope of this module (unless I can do it really small.)
|
is outside the scope of this module (unless I can do it really small.)
|
||||||
+/
|
+/
|
||||||
module terminal;
|
module arsd.terminal;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Widgets:
|
Widgets:
|
||||||
|
|
|
@ -16,5 +16,5 @@ writing plain applications.
|
||||||
*/
|
*/
|
||||||
module arsd.xwindows;
|
module arsd.xwindows;
|
||||||
|
|
||||||
public import simpledisplay;
|
public import arsd.simpledisplay;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue