Browse Source

Using auto for some iterators for less dense-looking code

Alex Szpakowski 12 years ago
parent
commit
95eedcd1be

+ 5 - 5
src/modules/audio/openal/Pool.cpp

@@ -76,7 +76,7 @@ bool Pool::isPlaying(Source *s)
 	bool p = false;
 	bool p = false;
 	{
 	{
 		thread::Lock lock(mutex);
 		thread::Lock lock(mutex);
-		for (std::map<Source *, ALuint>::iterator i = playing.begin(); i != playing.end(); i++)
+		for (auto i = playing.begin(); i != playing.end(); i++)
 		{
 		{
 			if (i->first == s)
 			if (i->first == s)
 				p = true;
 				p = true;
@@ -161,7 +161,7 @@ bool Pool::play(Source *source, ALuint &out)
 void Pool::stop()
 void Pool::stop()
 {
 {
 	thread::Lock lock(mutex);
 	thread::Lock lock(mutex);
-	for (std::map<Source *, ALuint>::iterator i = playing.begin(); i != playing.end(); i++)
+	for (auto i = playing.begin(); i != playing.end(); i++)
 	{
 	{
 		i->first->stopAtomic();
 		i->first->stopAtomic();
 		i->first->release();
 		i->first->release();
@@ -180,7 +180,7 @@ void Pool::stop(Source *source)
 void Pool::pause()
 void Pool::pause()
 {
 {
 	thread::Lock lock(mutex);
 	thread::Lock lock(mutex);
-	for (std::map<Source *, ALuint>::iterator i = playing.begin(); i != playing.end(); i++)
+	for (auto i = playing.begin(); i != playing.end(); i++)
 		i->first->pauseAtomic();
 		i->first->pauseAtomic();
 }
 }
 
 
@@ -195,7 +195,7 @@ void Pool::pause(Source *source)
 void Pool::resume()
 void Pool::resume()
 {
 {
 	thread::Lock lock(mutex);
 	thread::Lock lock(mutex);
-	for (std::map<Source *, ALuint>::iterator i = playing.begin(); i != playing.end(); i++)
+	for (auto i = playing.begin(); i != playing.end(); i++)
 		i->first->resumeAtomic();
 		i->first->resumeAtomic();
 }
 }
 
 
@@ -210,7 +210,7 @@ void Pool::resume(Source *source)
 void Pool::rewind()
 void Pool::rewind()
 {
 {
 	thread::Lock lock(mutex);
 	thread::Lock lock(mutex);
-	for (std::map<Source *, ALuint>::iterator i = playing.begin(); i != playing.end(); i++)
+	for (auto i = playing.begin(); i != playing.end(); i++)
 		i->first->rewindAtomic();
 		i->first->rewindAtomic();
 }
 }
 
 

+ 2 - 3
src/modules/graphics/opengl/Font.cpp

@@ -245,7 +245,7 @@ Font::Glyph *Font::addGlyph(uint32 glyph)
 
 
 Font::Glyph *Font::findGlyph(uint32 glyph)
 Font::Glyph *Font::findGlyph(uint32 glyph)
 {
 {
-	std::map<uint32, Glyph *>::const_iterator it = glyphs.find(glyph);
+	auto it = glyphs.find(glyph);
 
 
 	if (it != glyphs.end())
 	if (it != glyphs.end())
 		return it->second;
 		return it->second;
@@ -499,8 +499,7 @@ void Font::setFilter(const Image::Filter &f)
 {
 {
 	filter = f;
 	filter = f;
 
 
-	std::vector<GLuint>::const_iterator it;
-	for (it = textures.begin(); it != textures.end(); ++it)
+	for (auto it = textures.begin(); it != textures.end(); ++it)
 	{
 	{
 		gl.bindTexture(*it);
 		gl.bindTexture(*it);
 		filter.anisotropy = gl.setTextureFilter(f);
 		filter.anisotropy = gl.setTextureFilter(f);

+ 12 - 8
src/modules/graphics/opengl/Shader.cpp

@@ -554,7 +554,7 @@ void Shader::sendTexture(const std::string &name, GLuint texture)
 	if (activeTextureUnits[textureunit-1] == 0)
 	if (activeTextureUnits[textureunit-1] == 0)
 		++textureCounters[textureunit-1];
 		++textureCounters[textureunit-1];
 
 
-	// store texture id so it can be re-bound to the proper texture unit when necessary
+	// store texture id so it can be re-bound to the proper texture unit later
 	activeTextureUnits[textureunit-1] = texture;
 	activeTextureUnits[textureunit-1] = texture;
 }
 }
 
 
@@ -570,7 +570,7 @@ void Shader::sendCanvas(const std::string &name, const Canvas &canvas)
 
 
 int Shader::getTextureUnit(const std::string &name)
 int Shader::getTextureUnit(const std::string &name)
 {
 {
-	std::map<std::string, GLint>::const_iterator it = textureUnitPool.find(name);
+	auto it = textureUnitPool.find(name);
 
 
 	if (it != textureUnitPool.end())
 	if (it != textureUnitPool.end())
 		return it->second;
 		return it->second;
@@ -578,19 +578,23 @@ int Shader::getTextureUnit(const std::string &name)
 	int textureunit = 1;
 	int textureunit = 1;
 
 
 	// prefer texture units which are unused by all other shaders
 	// prefer texture units which are unused by all other shaders
-	std::vector<int>::iterator nextfreeunit = std::find(textureCounters.begin(), textureCounters.end(), 0);
+	auto freeunit_it = std::find(textureCounters.begin(), textureCounters.end(), 0);
 
 
-	if (nextfreeunit != textureCounters.end())
-		textureunit = std::distance(textureCounters.begin(), nextfreeunit) + 1; // we don't want to use unit 0
+	if (freeunit_it != textureCounters.end())
+	{
+		// we don't want to use unit 0
+		textureunit = std::distance(textureCounters.begin(), freeunit_it) + 1;
+	}
 	else
 	else
 	{
 	{
 		// no completely unused texture units exist, try to use next free slot in our own list
 		// no completely unused texture units exist, try to use next free slot in our own list
-		std::vector<GLuint>::iterator nexttexunit = std::find(activeTextureUnits.begin(), activeTextureUnits.end(), 0);
+		auto nextunit_it = std::find(activeTextureUnits.begin(), activeTextureUnits.end(), 0);
 
 
-		if (nexttexunit == activeTextureUnits.end())
+		if (nextunit_it == activeTextureUnits.end())
 			throw love::Exception("No more texture units available for shader.");
 			throw love::Exception("No more texture units available for shader.");
 
 
-		textureunit = std::distance(activeTextureUnits.begin(), nexttexunit) + 1; // we don't want to use unit 0
+		// we don't want to use unit 0
+		textureunit = std::distance(activeTextureUnits.begin(), nextunit_it) + 1;
 	}
 	}
 
 
 	textureUnitPool[name] = textureunit;
 	textureUnitPool[name] = textureunit;

+ 8 - 10
src/modules/joystick/sdl/JoystickModule.cpp

@@ -57,8 +57,7 @@ JoystickModule::JoystickModule()
 JoystickModule::~JoystickModule()
 JoystickModule::~JoystickModule()
 {
 {
 	// Close any open Joysticks.
 	// Close any open Joysticks.
-	std::list<joystick::Joystick *>::iterator it;
-	for (it = joysticks.begin(); it != joysticks.end(); ++it)
+	for (auto it = joysticks.begin(); it != joysticks.end(); ++it)
 	{
 	{
 		(*it)->close();
 		(*it)->close();
 		(*it)->release();
 		(*it)->release();
@@ -117,8 +116,7 @@ love::joystick::Joystick *JoystickModule::addJoystick(int deviceindex)
 	joystick::Joystick *joystick = 0;
 	joystick::Joystick *joystick = 0;
 	bool reused = false;
 	bool reused = false;
 
 
-	std::list<joystick::Joystick *>::iterator it;
-	for (it = joysticks.begin(); it != joysticks.end(); ++it)
+	for (auto it = joysticks.begin(); it != joysticks.end(); ++it)
 	{
 	{
 		// Try to re-use a disconnected Joystick with the same GUID.
 		// Try to re-use a disconnected Joystick with the same GUID.
 		if (!(*it)->isConnected() && (*it)->getGUID() == guidstr)
 		if (!(*it)->isConnected() && (*it)->getGUID() == guidstr)
@@ -143,19 +141,20 @@ love::joystick::Joystick *JoystickModule::addJoystick(int deviceindex)
 
 
 	// Make sure multiple instances of the same physical joystick aren't added
 	// Make sure multiple instances of the same physical joystick aren't added
 	// to the active list.
 	// to the active list.
-	for (size_t i = 0; i < activeSticks.size(); i++)
+	for (auto it = activeSticks.begin(); it != activeSticks.end(); ++it)
 	{
 	{
-		if (joystick->getHandle() == activeSticks[i]->getHandle())
+		if (joystick->getHandle() == (*it)->getHandle())
 		{
 		{
 			joystick->close();
 			joystick->close();
 
 
+			// If we just created the stick, remove it since it's a duplicate.
 			if (!reused)
 			if (!reused)
 			{
 			{
 				joysticks.remove(joystick);
 				joysticks.remove(joystick);
 				joystick->release();
 				joystick->release();
 			}
 			}
 
 
-			return activeSticks[i];
+			return *it;
 		}
 		}
 	}
 	}
 
 
@@ -169,7 +168,7 @@ void JoystickModule::removeJoystick(love::joystick::Joystick *joystick)
 		return;
 		return;
 
 
 	// Close the Joystick and remove it from the active joystick list.
 	// Close the Joystick and remove it from the active joystick list.
-	std::vector<joystick::Joystick *>::iterator it = std::find(activeSticks.begin(), activeSticks.end(), joystick);
+	auto it = std::find(activeSticks.begin(), activeSticks.end(), joystick);
 	if (it != activeSticks.end())
 	if (it != activeSticks.end())
 	{
 	{
 		(*it)->close();
 		(*it)->close();
@@ -425,8 +424,7 @@ void JoystickModule::checkGamepads(const std::string &guid) const
 		if (guid.compare(getDeviceGUID(d_index)) != 0)
 		if (guid.compare(getDeviceGUID(d_index)) != 0)
 			continue;
 			continue;
 
 
-		std::vector<love::joystick::Joystick *>::const_iterator it;
-		for (it = activeSticks.begin(); it != activeSticks.end(); ++it)
+		for (auto it = activeSticks.begin(); it != activeSticks.end(); ++it)
 		{
 		{
 			if ((*it)->isGamepad() || guid.compare((*it)->getGUID()) != 0)
 			if ((*it)->isGamepad() || guid.compare((*it)->getGUID()) != 0)
 				continue;
 				continue;

+ 3 - 3
src/modules/physics/box2d/World.cpp

@@ -257,21 +257,21 @@ void World::update(float dt)
 	world->Step(dt, 8, 6);
 	world->Step(dt, 8, 6);
 
 
 	// Destroy all objects marked during the time step.
 	// Destroy all objects marked during the time step.
-	for (std::vector<Body *>::iterator i = destructBodies.begin(); i < destructBodies.end(); i++)
+	for (auto i = destructBodies.begin(); i < destructBodies.end(); i++)
 	{
 	{
 		Body *b = *i;
 		Body *b = *i;
 		if (b->body != 0) b->destroy();
 		if (b->body != 0) b->destroy();
 		// Release for reference in vector.
 		// Release for reference in vector.
 		b->release();
 		b->release();
 	}
 	}
-	for (std::vector<Fixture *>::iterator i = destructFixtures.begin(); i < destructFixtures.end(); i++)
+	for (auto i = destructFixtures.begin(); i < destructFixtures.end(); i++)
 	{
 	{
 		Fixture *f = *i;
 		Fixture *f = *i;
 		if (f->isValid()) f->destroy();
 		if (f->isValid()) f->destroy();
 		// Release for reference in vector.
 		// Release for reference in vector.
 		f->release();
 		f->release();
 	}
 	}
-	for (std::vector<Joint *>::iterator i = destructJoints.begin(); i < destructJoints.end(); i++)
+	for (auto i = destructJoints.begin(); i < destructJoints.end(); i++)
 	{
 	{
 		Joint *j = *i;
 		Joint *j = *i;
 		if (j->isValid()) j->destroyJoint();
 		if (j->isValid()) j->destroyJoint();