Looking at the code, this is, as far as I can discern, impossible. The reason for this is that this requires a factory built in a location that is within the city boundaries of two cities be ****igned to one of those two cities, whereas a substation built in a location that is within the city boundaries of those two same cities is ****igned to the other of those two cities.
In fact, the ****ignment of a city to each of those two objects uses the same method, which is deterministic:
stadt_t *karte_t::get_city(const koord pos) const
{
stadt_t* city = NULL;
if(pos == koord::invalid)
{
return NULL;
}
if(ist_in_kartengrenzen(pos))
{
for (weighted_vector_tpl<stadt_t*>::const_iterator i = stadt.begin(), end = stadt.end(); i != end; ++i)
{
stadt_t* c = *i;
if(c->is_within_city_limits(pos))
{
city = c;
}
}
}
return city;
}
So, if there is a factory in a city within a city, then either that factory will belong to the outer city, or, if it belongs to the inner city, any substation built in the inner city will also belong to the inner city, and not the outer city.
A useful modification to the get_city method would be to make sure that the inner city is always returned when faced with a city within a city situation.
Edit: How's this:
stadt_t *karte_t::get_city(const koord pos) const
{
stadt_t* city = NULL;
if(pos == koord::invalid)
{
return NULL;
}
if(ist_in_kartengrenzen(pos))
{
uint16 cities = 0;
for (weighted_vector_tpl<stadt_t*>::const_iterator i = stadt.begin(), end = stadt.end(); i != end; ++i)
{
stadt_t* c = *i;
if(c->is_within_city_limits(pos))
{
cities ++;
if(cities > 1)
{
// We have a city within a city. Make sure to return the *inner* city.
if(city->is_within_city_limits(c->get_pos()))
{
// "c" is the inner city: c's town hall is within the city limits of "city".
city = c;
}
}
else
{
city = c;
}
}
}
}
return city;
}
?