mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
Fixed some compilation errors from previous revision. Now it compiles but the classes different methods haven't been bound yet so won't have any effect.
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1683 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
a4925aab38
commit
dbc947a185
@ -39,7 +39,7 @@ static VALUE Font_LoadFromFile( VALUE self, VALUE aFileName )
|
|||||||
{
|
{
|
||||||
sf::Font *object = NULL;
|
sf::Font *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Font, object );
|
Data_Get_Struct( self, sf::Font, object );
|
||||||
if( object->LoadFromFile( rb_string_value_cstr( aFileName ) ) == true )
|
if( object->LoadFromFile( rb_string_value_cstr( &aFileName ) ) == true )
|
||||||
{
|
{
|
||||||
return Qtrue;
|
return Qtrue;
|
||||||
}
|
}
|
||||||
@ -49,11 +49,11 @@ static VALUE Font_LoadFromFile( VALUE self, VALUE aFileName )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE Font_GetGlyph( VALUE self, VALUE aCodePoint, VALUE aCharacterSize VALUE aBoldFlag )
|
static VALUE Font_GetGlyph( VALUE self, VALUE aCodePoint, VALUE aCharacterSize, VALUE aBoldFlag )
|
||||||
{
|
{
|
||||||
sf::Font *object = NULL;
|
sf::Font *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Font, object );
|
Data_Get_Struct( self, sf::Font, object );
|
||||||
const Glyph& glyph = object->GetGlyph( FIX2UINT( aCodePoint ), FIX2UINT( aCharacterSize ), aBoldFlag != Qfalse );
|
const sf::Glyph &glyph = object->GetGlyph( FIX2UINT( aCodePoint ), FIX2UINT( aCharacterSize ), aBoldFlag != Qfalse );
|
||||||
VALUE rbGlyph = rb_funcall( globalGlyphClass, rb_intern( "new" ), 0 );
|
VALUE rbGlyph = rb_funcall( globalGlyphClass, rb_intern( "new" ), 0 );
|
||||||
VALUE bounds = rb_funcall( globalRectClass, rb_intern( "new" ), 4,
|
VALUE bounds = rb_funcall( globalRectClass, rb_intern( "new" ), 4,
|
||||||
INT2FIX( glyph.Bounds.Left ), INT2FIX( glyph.Bounds.Top ),
|
INT2FIX( glyph.Bounds.Left ), INT2FIX( glyph.Bounds.Top ),
|
||||||
|
@ -22,13 +22,16 @@
|
|||||||
|
|
||||||
#include "Image.hpp"
|
#include "Image.hpp"
|
||||||
#include "Color.hpp"
|
#include "Color.hpp"
|
||||||
|
#include "Rect.hpp"
|
||||||
#include "main.hpp"
|
#include "main.hpp"
|
||||||
#include <SFML/Graphics/Image.hpp>
|
#include <SFML/Graphics/Image.hpp>
|
||||||
|
#include <SFML/Graphics/Rect.hpp>
|
||||||
|
|
||||||
VALUE globalImageClass;
|
VALUE globalImageClass;
|
||||||
|
|
||||||
/* External classes */
|
/* External classes */
|
||||||
extern VALUE globalColorClass;
|
extern VALUE globalColorClass;
|
||||||
|
extern VALUE globalRectClass;
|
||||||
|
|
||||||
/* Free a heap allocated object
|
/* Free a heap allocated object
|
||||||
* Not accessible trough ruby directly!
|
* Not accessible trough ruby directly!
|
||||||
@ -42,7 +45,7 @@ static VALUE Image_LoadFromFile( VALUE self, VALUE aFileName )
|
|||||||
{
|
{
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
if( object->LoadFromFile( rb_string_value_cstr( aFileName ) ) == true )
|
if( object->LoadFromFile( rb_string_value_cstr( &aFileName ) ) == true )
|
||||||
{
|
{
|
||||||
return Qtrue;
|
return Qtrue;
|
||||||
}
|
}
|
||||||
@ -85,7 +88,7 @@ static VALUE Image_SaveToFile( VALUE self, VALUE aFileName )
|
|||||||
{
|
{
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
if( object->SaveToFile( rb_string_value_cstr( aFileName ) ) == true )
|
if( object->SaveToFile( rb_string_value_cstr( &aFileName ) ) == true )
|
||||||
{
|
{
|
||||||
return Qtrue;
|
return Qtrue;
|
||||||
}
|
}
|
||||||
@ -154,7 +157,7 @@ static VALUE Image_CreateMaskFromColor( int argc, VALUE *args, VALUE self )
|
|||||||
|
|
||||||
static VALUE Image_Copy( int argc, VALUE *args, VALUE self )
|
static VALUE Image_Copy( int argc, VALUE *args, VALUE self )
|
||||||
{
|
{
|
||||||
Image *source;
|
sf::Image *source;
|
||||||
unsigned int destX = 0;
|
unsigned int destX = 0;
|
||||||
unsigned int destY = 0;
|
unsigned int destY = 0;
|
||||||
sf::IntRect sourceRect = sf::IntRect(0, 0, 0, 0);
|
sf::IntRect sourceRect = sf::IntRect(0, 0, 0, 0);
|
||||||
@ -194,7 +197,7 @@ static VALUE Image_Copy( int argc, VALUE *args, VALUE self )
|
|||||||
|
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
object->Copy( *source, dextX, dextY, sourceRect, applyAlpha );
|
object->Copy( *source, destX, destY, sourceRect, applyAlpha );
|
||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -236,10 +239,10 @@ static VALUE Image_SetPixel( VALUE self, VALUE aX, VALUE aY, VALUE aColor )
|
|||||||
{
|
{
|
||||||
VALUE rbColor = Color_ForceType( aColor );
|
VALUE rbColor = Color_ForceType( aColor );
|
||||||
sf::Color color;
|
sf::Color color;
|
||||||
color.r = FIX2INT( Color_GetR( rubyColor ) );
|
color.r = FIX2INT( Color_GetR( rbColor ) );
|
||||||
color.g = FIX2INT( Color_GetG( rubyColor ) );
|
color.g = FIX2INT( Color_GetG( rbColor ) );
|
||||||
color.b = FIX2INT( Color_GetB( rubyColor ) );
|
color.b = FIX2INT( Color_GetB( rbColor ) );
|
||||||
color.a = FIX2INT( Color_GetA( rubyColor ) );
|
color.a = FIX2INT( Color_GetA( rbColor ) );
|
||||||
|
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
@ -247,27 +250,27 @@ static VALUE Image_SetPixel( VALUE self, VALUE aX, VALUE aY, VALUE aColor )
|
|||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE Image_SetPixel( VALUE self, VALUE aX, VALUE aY )
|
static VALUE Image_GetPixel( VALUE self, VALUE aX, VALUE aY )
|
||||||
{
|
{
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
const sf::Color color = object->SetPixel( FIX2INT( aX ), FIX2INT( aY ) );
|
const sf::Color color = object->GetPixel( FIX2INT( aX ), FIX2INT( aY ) );
|
||||||
return rb_funcall( globalColorClass, rb_intern( "new" ), 4,
|
return rb_funcall( globalColorClass, rb_intern( "new" ), 4,
|
||||||
INT2FIX( color.r ), INT2FIX( color.g ),
|
INT2FIX( color.r ), INT2FIX( color.g ),
|
||||||
INT2FIX( color.b ), INT2FIX( color.a ) );
|
INT2FIX( color.b ), INT2FIX( color.a ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
static VALUE Image_GetPixelPtr( VALUE self )
|
static VALUE Image_GetPixelsPtr( VALUE self )
|
||||||
{
|
{
|
||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
|
|
||||||
VALUE pixels = rb_ary_new2( dataSize );
|
|
||||||
const sf::Uint8 *const pixelPointer = object->GetPixelPtr();
|
|
||||||
|
|
||||||
const unsigned int rawWidth = object->GetWidth();
|
const unsigned int rawWidth = object->GetWidth();
|
||||||
const unsigned int rawHeight = object->GetHeight();
|
const unsigned int rawHeight = object->GetHeight();
|
||||||
const unsigned long dataSize = rawWidth * rawHeight * 4;
|
const unsigned long dataSize = rawWidth * rawHeight * 4;
|
||||||
|
|
||||||
|
VALUE pixels = rb_ary_new2( dataSize );
|
||||||
|
const sf::Uint8 *const pixelPointer = object->GetPixelsPtr();
|
||||||
for(unsigned long index = 0; index < dataSize; index++)
|
for(unsigned long index = 0; index < dataSize; index++)
|
||||||
{
|
{
|
||||||
rb_ary_store( pixels, index, CHR2FIX( pixelPointer[index] ) );
|
rb_ary_store( pixels, index, CHR2FIX( pixelPointer[index] ) );
|
||||||
@ -282,7 +285,7 @@ static VALUE Image_UpdatePixels( int argc, VALUE *args, VALUE self )
|
|||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
VALUE somePixels = Qnil;
|
VALUE somePixels = Qnil;
|
||||||
VALUE aRectangle = Qnil;
|
VALUE aRectangle = Qnil;
|
||||||
IntRect rectangle = IntRect(0, 0, object->GetWidth(), object->GetHeight() );
|
sf::IntRect rectangle = sf::IntRect(0, 0, object->GetWidth(), object->GetHeight() );
|
||||||
|
|
||||||
switch( argc )
|
switch( argc )
|
||||||
{
|
{
|
||||||
@ -309,7 +312,7 @@ static VALUE Image_UpdatePixels( int argc, VALUE *args, VALUE self )
|
|||||||
sf::Uint8 val = NUM2CHR( rb_ary_entry( pixels, index ) );
|
sf::Uint8 val = NUM2CHR( rb_ary_entry( pixels, index ) );
|
||||||
tempData[index] = val;
|
tempData[index] = val;
|
||||||
}
|
}
|
||||||
bool result = object->UpdatePixels( tempData, rectangle );
|
object->UpdatePixels( tempData, rectangle );
|
||||||
delete[] tempData;
|
delete[] tempData;
|
||||||
|
|
||||||
return Qnil;
|
return Qnil;
|
||||||
@ -330,7 +333,7 @@ static VALUE Image_SetSmooth( VALUE self, VALUE aSmoothFlag )
|
|||||||
|
|
||||||
if( aSmoothFlag == Qtrue )
|
if( aSmoothFlag == Qtrue )
|
||||||
{
|
{
|
||||||
object->SetSmooth( true ):
|
object->SetSmooth( true );
|
||||||
}
|
}
|
||||||
else if( aSmoothFlag == Qfalse )
|
else if( aSmoothFlag == Qfalse )
|
||||||
{
|
{
|
||||||
@ -376,7 +379,7 @@ static VALUE Image_GetTexCoords( VALUE self, VALUE aRectangle )
|
|||||||
sf::Image *object = NULL;
|
sf::Image *object = NULL;
|
||||||
Data_Get_Struct( self, sf::Image, object );
|
Data_Get_Struct( self, sf::Image, object );
|
||||||
|
|
||||||
sf::FloatRect result = object->GetTexCords( rectangle );
|
sf::FloatRect result = object->GetTexCoords( rectangle );
|
||||||
return rb_funcall( globalRectClass, rb_intern( "new" ), 4,
|
return rb_funcall( globalRectClass, rb_intern( "new" ), 4,
|
||||||
rb_float_new( result.Left ), rb_float_new( result.Top ),
|
rb_float_new( result.Left ), rb_float_new( result.Top ),
|
||||||
rb_float_new( result.Width ), rb_float_new( result.Height ) );
|
rb_float_new( result.Width ), rb_float_new( result.Height ) );
|
||||||
|
@ -27,15 +27,15 @@
|
|||||||
|
|
||||||
VALUE Rect_ForceType( VALUE someValue );
|
VALUE Rect_ForceType( VALUE someValue );
|
||||||
|
|
||||||
VALUE Color_GetLeft( VALUE self );
|
VALUE Rect_GetLeft( VALUE self );
|
||||||
VALUE Color_GetTop( VALUE self );
|
VALUE Rect_GetTop( VALUE self );
|
||||||
VALUE Color_GetWidth( VALUE self );
|
VALUE Rect_GetWidth( VALUE self );
|
||||||
VALUE Color_GetHeight( VALUE self );
|
VALUE Rect_GetHeight( VALUE self );
|
||||||
|
|
||||||
VALUE Color_SetLeft( VALUE self, VALUE aVal );
|
VALUE Rect_SetLeft( VALUE self, VALUE aVal );
|
||||||
VALUE Color_SetTop( VALUE self, VALUE aVal );
|
VALUE Rect_SetTop( VALUE self, VALUE aVal );
|
||||||
VALUE Color_SetWidth( VALUE self, VALUE aVal );
|
VALUE Rect_SetWidth( VALUE self, VALUE aVal );
|
||||||
VALUE Color_SetHeight( VALUE self, VALUE aVal );
|
VALUE Rect_SetHeight( VALUE self, VALUE aVal );
|
||||||
|
|
||||||
|
|
||||||
void Init_Rect( void );
|
void Init_Rect( void );
|
||||||
|
Loading…
Reference in New Issue
Block a user