remove win32-console

cvs
Mackenzie Straight 2005-01-08 21:56:42 +00:00
parent 42b6d013f8
commit d942a6e57c
4 changed files with 3 additions and 92 deletions

View File

@ -173,7 +173,6 @@ os "win32" = [
"/library/io/win32-io-internals.factor"
"/library/io/win32-stream.factor"
"/library/io/win32-server.factor"
"/library/io/win32-console.factor"
] [
dup print
run-resource

View File

@ -1,89 +0,0 @@
! :folding=indent:collapseFolds=1:
! $Id$
!
! Copyright (C) 2004 Mackenzie Straight.
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
IN: win32-console
USE: lists
USE: vectors
USE: math
USE: kernel
USE: namespaces
USE: stdio
USE: streams
USE: presentation
USE: generic
USE: parser
USE: compiler
USE: win32-api
USE: win32-stream
TRAITS: win32-console-stream
SYMBOL: handle
: reset ( -- )
handle get 7 SetConsoleTextAttribute drop ;
: ansi>win32 ( ansi-attr -- win32-attr )
#! Converts an ANSI color (0-based) to a combination of
#! _RED, _BLUE, and _GREEN bit flags.
{ 0 4 2 6 1 5 3 7 } vector-nth ;
: set-bold ( attr ? -- attr )
#! Set or unset the bold bit (bit 3).
[ 8 bitor ] [ 8 bitnot bitand ] ifte ;
: set-fg ( attr n -- attr )
#! Set the foreground field (bits 0..2).
swap 7 bitnot bitand bitor ;
: set-bg ( attr n -- attr )
#! Set the background field (bits 4..6).
4 shift swap 112 bitnot bitand bitor ;
: char-attrs ( style -- attrs )
#! Converts a style into a win32 text attribute bitfield.
7 ! Default style is white FG, black BG, no extra bits
"bold" pick assoc [ set-bold ] when*
"ansi-fg" pick assoc [ str>number ansi>win32 set-fg ] when*
"ansi-bg" pick assoc [ str>number ansi>win32 set-bg ] when*
nip ;
: set-attrs ( style -- )
char-attrs handle get swap SetConsoleTextAttribute drop ;
M: win32-console-stream fwrite-attr ( string style stream -- )
[
[ default-style ] unless* set-attrs
delegate get fwrite
reset
] bind ;
C: win32-console-stream ( stream -- stream )
[ -11 GetStdHandle handle set delegate set ] extend ;
! global [ [ <win32-console-stream> ] smart-term-hook set ] bind

View File

@ -25,7 +25,7 @@ DLLEXPORT CELL ds;
CELL cs_bot;
/* raw pointer to callstack top */
CELL cs;
DLLEXPORT CELL cs;
#include <errno.h>
#include <fcntl.h>

View File

@ -4,8 +4,9 @@ void ffi_dlopen (DLL *dll)
{
#ifdef FFI
HMODULE module;
char *path = to_c_string(untag_string(dll->path));
module = LoadLibrary(to_c_string(untag_string(dll->path)));
module = LoadLibrary(path);
if (!module)
general_error(ERROR_FFI, tag_object(last_error()));