Advertisement
Tkap1

Untitled

Apr 2nd, 2025
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.49 KB | None | 0 0
  1. // In some languages, you can do this
  2. // USAGE
  3. for enemy_iterator() {
  4.     // do things with enemy
  5.     enemy.name = "clown";
  6. }
  7.  
  8. // IMPLEMENTATION
  9. enemy_iterator()
  10. {
  11.     chunks = get_chunks(...)
  12.     for each chunk {
  13.         for each enemy in chunk {
  14.             yield; // this basically pastes the enemy.name = "clown"; in here
  15.         }
  16.     }
  17. }
  18.  
  19. // ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  20. // ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  21. // ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  22. // To do this in C, you can do something like this (kinda cringe)
  23. // USAGE
  24. EnemyIterator iterator = {};
  25. while(enemy_iterator(&iterator)) {
  26.     iterator.enemy.name = "clown";
  27. }
  28.  
  29. // IMPLEMENTATION
  30. bool enemy_iterator(EnemyIterator* iterator)
  31. {
  32.     chunks = get_chunks(...);
  33.     for(int i = iterator->chunk_index; i < chunk_count; i += 1) {
  34.         Chunk chunk = chunks[i];
  35.         iterator->chunk_index += 1;
  36.         for(int j = iterator->enemy_index; j < chunk.enemy_count; j += 1) {
  37.             iterator->enemy_index += 1;
  38.             Enemy* enemy = chunk.enemies[j];
  39.             iterator->enemy = enemy;
  40.             return true;
  41.         }
  42.     }
  43.     return false;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement