OSDN Git Service

最初のコミット
[winaudioj/stedx.git] / iocs_tgraph.cpp
1 /*
2   iocs_tgraph.c
3
4   functions for compatibility to iocslib
5   ( containing mainly text-graphics oriented functions )
6
7   Made by Studio Breeze. 1998, 2002
8
9
10   Permission is hereby granted, free of charge, to any person obtaining a copy
11   of this software and associated documentation files (the "Software"), to deal
12   in the Software without restriction, including without limitation the rights
13   to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14   copies of the Software, and to permit persons to whom the Software is
15   furnished to do so, subject to the following conditions:
16
17   The above copyright notice and this permission notice shall be included in
18   all copies or substantial portions of the Software.
19
20   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
23   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26   THE SOFTWARE.
27  */
28
29 #include "sted.h"
30 #include "sted_screen.h"
31
32
33 int
34 _iocs_tpalet( int in_no, int in_code )
35 {
36   CSTedScreenBase* scr;
37
38   scr = GetDriver();
39   if (!scr) return 0;
40
41   return scr->SetTextPalette(in_no, in_code);
42 }
43
44 void
45 _iocs_txbox( const struct _x68_txfillptr *ptr )
46 {
47   CSTedScreenBase* scr;
48
49   scr = GetDriver();
50   if (!scr) return;
51
52   scr->TextXBox( ptr->x, ptr->y, ptr->x1, ptr->y1, ptr->vram_page );
53   return;
54 }
55
56 void
57 _iocs_txfill ( const struct _x68_txfillptr *ptr )
58 {
59   CSTedScreenBase* scr;
60
61   scr = GetDriver();
62   if (!scr) return;
63
64   scr->TextFill( ptr->vram_page, ptr->x, ptr->y, ptr->x1, ptr->y1, ptr->fill_patn );
65
66   return;
67 }
68
69 void
70 _iocs_txrascpy ( int sr_dst, int copy, int mode )
71 {
72   CSTedScreenBase* scr;
73
74   scr = GetDriver();
75   if (!scr) return;
76   scr->TextRasterCopy( sr_dst&0xff, sr_dst>>8, copy, mode );
77   return;
78 }
79
80 void
81 _iocs_txxline ( const struct _x68_xlineptr *ptr )
82 {
83   CSTedScreenBase* scr;
84
85   scr = GetDriver();
86   if (!scr) return;
87
88   scr->TextXXLine( ptr->vram_page, ptr->x, ptr->y, ptr->x1, ptr->line_style );
89   return;
90 }
91
92 void
93 _iocs_txyline ( const struct _x68_ylineptr *ptr )
94 {
95   CSTedScreenBase* scr;
96
97   scr = GetDriver();
98   if (!scr) return;
99
100   scr->TextXYLine( ptr->vram_page, ptr->x, ptr->y, ptr->y1, ptr->line_style );
101   return;
102 }
103