Gnash  0.8.11dev
aos4_cairo_glue.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 // 2011 Free Software Foundation, Inc
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 
19 #include "aos4_glue.h"
20 #undef ACTION_END
21 #include "Renderer.h"
22 #include "Renderer_cairo.h"
23 
24 #include <proto/intuition.h>
25 #include <proto/graphics.h>
26 #include <graphics/blitattr.h>
27 #include <proto/Picasso96API.h>
28 #include <proto/layers.h>
29 #include <proto/dos.h>
30 #include <proto/gadtools.h>
31 
32 #include <cairo.h>
33 
34 #include <cstdint> // for boost::?int??_t
35 #include <vector>
36 
37 namespace gnash
38 {
39  class AOS4CairoGlue : public AOS4Glue
40  {
41  public:
42  AOS4CairoGlue();
43  virtual ~AOS4CairoGlue();
44 
45  bool init(int argc, char **argv[]);
46  Renderer *createRenderHandler(int depth);
48  bool prepDrawingArea(int width, int height);
49  void render();
50  void render(int minx, int miny, int maxx, int maxy);
51  void setInvalidatedRegions(const InvalidatedRanges& ranges);
52  struct Window *getWindow(void);
53  struct Menu *getMenu(void);
54  void setFullscreen();
55  void unsetFullscreen();
56  void resize(int width, int height);
57  void saveOrigiginalDimension(int width, int height);
58  private:
59  geometry::Range2d<int> _validbounds;
60  std::vector< geometry::Range2d<int> > _drawbounds;
61  cairo_surface_t *_cairo_surface;
62  cairo_t *_cairo_handle;
63  unsigned char *_offscreenbuf;
64  Renderer *_cairo_renderer;
65  struct Window *_window;
66  struct Screen *_screen;
67  bool _fullscreen;
68  int _width;
69  int _orig_width;
70  int _height;
71  int _orig_height;
72  int _stride;
73  int _btype;
74  cairo_format_t _ctype;
75  struct Menu *_menu;
76  RGBFTYPE _ftype;
77  };
78 }
79 
gnash::geometry::SnappingRanges2d< std::int32_t >
gnash::AOS4CairoGlue::createRenderHandler
Renderer * createRenderHandler()
Definition: aos4_cairo_glue.cpp:132
gnash::geometry::Range2d< int >
gnash::Renderer::set_invalidated_regions
virtual void set_invalidated_regions(const InvalidatedRanges &)
Sets the update region (called prior to begin_display).
Definition: Renderer.h:340
gnash::key::L
@ L
Definition: GnashKey.h:124
gnash::AOS4CairoGlue::getMenu
struct Menu * getMenu(void)
Definition: aos4_cairo_glue.cpp:306
height
@ height
Definition: klash_part.cpp:329
aos4_glue.h
gnash::geometry::Range2d::getMaxY
T getMaxY() const
Get max Y ordinate.
Definition: Range2d.h:633
aos4_cairo_glue.h
gnash::renderer::cairo::set_context
DSOEXPORT void set_context(Renderer *handler, cairo_t *context)
Make sure to call this before starting display.
Definition: Renderer_cairo.cpp:1143
_
#define _(String)
Definition: log.h:44
Renderer.h
gnash::AOS4CairoGlue::saveOrigiginalDimension
void saveOrigiginalDimension(int width, int height)
Definition: aos4_cairo_glue.cpp:165
gnash
Anonymous namespace for callbacks, local functions, event handlers etc.
Definition: dbus_ext.cpp:41
gnash::geometry::Range2d::getMaxX
T getMaxX() const
Get max X ordinate.
Definition: Range2d.h:613
GNASH_REPORT_FUNCTION
#define GNASH_REPORT_FUNCTION
Definition: log.h:452
gnash::Renderer
Base class for render handlers.
Definition: Renderer.h:189
gnash::geometry::Range2d::getMinX
T getMinX() const
Get min X ordinate.
Definition: Range2d.h:603
gnash::AOS4Glue::_bpp
int _bpp
Definition: aos4_glue.h:39
gnash::log_error
void log_error(StringType msg, Args... args)
Definition: log.h:283
gnash::geometry::Range2d::isNull
bool isNull() const
Returns true if this is the NULL Range2d.
Definition: Range2d.h:181
gnash::AOS4CairoGlue::setInvalidatedRegions
void setInvalidatedRegions(const InvalidatedRanges &ranges)
Definition: aos4_cairo_glue.cpp:312
Renderer_cairo.h
gnash::geometry::Intersection
Range2d< T > Intersection(const Range2d< T > &r1, const Range2d< T > &r2)
Return a rectangle being the intersetion of the two rectangles.
Definition: Range2d.h:762
gnash::AOS4CairoGlue::render
void render()
Definition: aos4_cairo_glue.cpp:331
gnash::AOS4CairoGlue::getWindow
struct Window * getWindow(void)
Definition: aos4_cairo_glue.cpp:300
gnash::Renderer::world_to_pixel
virtual geometry::Range2d< int > world_to_pixel(const SWFRect &worldbounds) const =0
Converts world coordinates to pixel coordinates.
gnash::geometry::Range2d::getMinY
T getMinY() const
Get min Y ordinate.
Definition: Range2d.h:623
gnash::AOS4CairoGlue::~AOS4CairoGlue
virtual ~AOS4CairoGlue()
Definition: aos4_cairo_glue.cpp:76
gnash::geometry::SnappingRanges2d::size
size_type size() const
Returns the number of ranges in the list.
Definition: snappingrange.h:320
gnash::renderer::cairo::create_handler
DSOEXPORT Renderer * create_handler()
Create a render handler.
Definition: Renderer_cairo.cpp:1136
log.h
gnash::AOS4CairoGlue
Definition: aos4_cairo_glue.h:40
gnash::AOS4CairoGlue::resize
void resize(int width, int height)
Definition: aos4_cairo_glue.cpp:368
gnash::AOS4Glue
Definition: aos4_glue.h:29
gnash::AOS4CairoGlue::AOS4CairoGlue
AOS4CairoGlue()
Definition: aos4_cairo_glue.cpp:65
gnash::geometry::Range2d::setTo
Range2d< T > & setTo(T x, T y)
Set ourself to bound the given point.
Definition: Range2d.h:339
gnash::AOS4CairoGlue::setFullscreen
void setFullscreen()
Definition: aos4_cairo_glue.cpp:145
gnash::AOS4CairoGlue::init
bool init(int argc, char **argv[])
Definition: aos4_cairo_glue.cpp:93
gnash::geometry::SnappingRanges2d::getRange
const RangeType & getRange(size_type index) const
Returns the range at the specified index.
Definition: snappingrange.h:326
CHUNK_SIZE
#define CHUNK_SIZE
width
@ width
Definition: klash_part.cpp:329
gnash::AOS4CairoGlue::prepDrawingArea
bool prepDrawingArea(int width, int height)
Definition: aos4_cairo_glue.cpp:187
gnash::AOS4CairoGlue::unsetFullscreen
void unsetFullscreen()
Definition: aos4_cairo_glue.cpp:172
nm
struct NewMenu nm[]
Definition: aos4_cairo_glue.cpp:30