Lines Matching refs:play

46 …fine RAW_START() _GP(play).raw_drawing_surface = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphi…
48 #define RAW_SURFACE() (_GP(play).raw_drawing_surface.get())
54 PBitmap source = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawSaveScreen()
65 PBitmap deston = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawRestoreScreen()
83 PBitmap deston = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawRestoreScreenTinted()
98 if (frame == _GP(play).bg_frame) in RawDrawFrameTransparent()
124 _GP(play).raw_color = MakeColor(clr); in RawSetColor()
131 …_GP(play).raw_color = makecol_depth(_GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic->GetColorDe… in RawSetColorRGB()
136 color_t text_color = _GP(play).raw_color; in RawPrint()
137 if ((RAW_SURFACE()->GetColorDepth() <= 8) && (_GP(play).raw_color > 255)) { in RawPrint()
142 wouttext_outline(RAW_SURFACE(), xx, yy, _GP(play).normal_font, text_color, text); in RawPrint()
163 color_t text_color = _GP(play).raw_color; in RawPrintMessageWrapped()
260 _GP(play).raw_modified[_GP(play).bg_frame] = 1; in RawDrawLine()
263 PBitmap bg = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawDrawLine()
264 color_t draw_color = _GP(play).raw_color; in RawDrawLine()
276 _GP(play).raw_modified[_GP(play).bg_frame] = 1; in RawDrawCircle()
277 PBitmap bg = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawDrawCircle()
278 bg->FillCircle(Circle(xx, yy, rad), _GP(play).raw_color); in RawDrawCircle()
283 _GP(play).raw_modified[_GP(play).bg_frame] = 1; in RawDrawRectangle()
287 PBitmap bg = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawDrawRectangle()
288 bg->FillRect(Rect(x1, y1, x2, y2), _GP(play).raw_color); in RawDrawRectangle()
293 _GP(play).raw_modified[_GP(play).bg_frame] = 1; in RawDrawTriangle()
298 PBitmap bg = _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic; in RawDrawTriangle()
299 bg->DrawTriangle(Triangle(x1, y1, x2, y2, x3, y3), _GP(play).raw_color); in RawDrawTriangle()