void WindowExtension::ExposeActionsResources(gd::Instruction & action, gd::ArbitraryResourceWorker & worker) { if ( action.GetType() == "EcrireTexte" && !action.GetParameter( 6 ).GetPlainString().empty() ) { std::string parameter = action.GetParameter(6).GetPlainString(); worker.ExposeFile(parameter); action.SetParameter(6, parameter); } if ( action.GetType() == "SetWindowIcon" && !action.GetParameter( 1 ).GetPlainString().empty() ) { std::string parameter = action.GetParameter(1).GetPlainString(); worker.ExposeImage(parameter); action.SetParameter(1, parameter); } }
void SkImageManager::ShowResourcesToGD(gd::ArbitraryResourceWorker & worker) { std::map<std::string, boost::shared_ptr<SFMLTextureWrapper> >::iterator it = m_images.begin(); for(; it != m_images.end(); it++) { worker.ExposeImage(const_cast<std::string&>(it->first)); } for(unsigned int a = 0; a < m_needToBeLoaded.size(); a++) { std::string value = m_needToBeLoaded.front(); m_needToBeLoaded.pop(); m_needToBeLoaded.push(value); worker.ExposeImage(value); } }
void AudioExtension::ExposeActionsResources(gd::Instruction & action, gd::ArbitraryResourceWorker & worker) { if ( action.GetType() == "PlaySound" || action.GetType() == "PlaySoundCanal" || action.GetType() == "PlayMusic" || action.GetType() == "PlayMusicCanal" ) { gd::String parameter = action.GetParameter(1).GetPlainString(); worker.ExposeAudio(parameter); action.SetParameter(1, parameter); } }
void SpriteObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { for ( unsigned int j = 0; j < GetAnimationsCount();j++ ) { for ( unsigned int k = 0;k < GetAnimation( j ).GetDirectionsCount();k++ ) { for ( unsigned int l = 0;l < GetAnimation( j ).GetDirection(k).GetSpritesCount();l++ ) worker.ExposeImage(GetAnimation( j ).GetDirection(k).GetSprite(l).GetImageName()); } } }
void Box3DObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { worker.ExposeImage(frontTextureName); worker.ExposeImage(topTextureName); worker.ExposeImage(bottomTextureName); worker.ExposeImage(leftTextureName); worker.ExposeImage(rightTextureName); worker.ExposeImage(backTextureName); }
void TiledSpriteObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { worker.ExposeImage(textureName); }
void TileMapObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { worker.ExposeImage(tileSet.Get().textureName); }
void TextObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { worker.ExposeFile(fontName); }
void SoundObject::ExposeResources(gd::ArbitraryResourceWorker & worker) { worker.ExposeFile(fileName); }
void ParticleEmitterObject::ExposeResources( gd::ArbitraryResourceWorker& worker) { gd::String texture = GetParticleTexture(); worker.ExposeImage(texture); SetParticleTexture(texture); }