User Tools

Site Tools


devlogs:30_4_2022

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
devlogs:30_4_2022 [2022/04/30 14:47]
root
devlogs:30_4_2022 [2023/10/19 15:25] (current)
Line 1: Line 1:
 ====== Saturday, 30th April, 2022 ======  ====== Saturday, 30th April, 2022 ====== 
  
-This is the first dev logToday I started this log I guess... The plan is two fold. I want to learn the [[https://bevyengine.org/ | bevy]] framework and also break down super letter linker to try and make an exact copy of it. I am a lazy piece of shit so lets see how well this goes!! ๐Ÿคž๐Ÿคž๐Ÿคž+<wrap lo> This is the first dev log </wrap>ย 
 +\\ Today I started this log I guess... The plan is two fold. I want to learn the [[https://bevyengine.org/ | bevy]] framework and also break down super letter linker to try and make an exact copy of it. I am a lazyso lets see how well this goes!! ๐Ÿคž๐Ÿคž๐Ÿคž
  
-Bevy is a strange engine to me. I do not have any experience with entity component systems but this seems like a cool paradigm. But I am mostly using it to use rust to compile down to web assembly. ((also dokuwiki is pretty cool ngl w/ btc boiiis))+Bevy is a strange engine to me. I do not have any experience with entity component systems but this seems like a cool paradigm.I am mostly using it to use rust to compile down to web assembly. Rust makes me feel like a 90s hacker kid. ((also dokuwiki is pretty cool))
  
 {{:devlogs:ecs_example.png?direct&400|}} {{:devlogs:ecs_example.png?direct&400|}}
  
-Everything I learn is basically a brain copy pasta of what is on [[https://bevyengine.org/learn/book/getting-started/ | this site]], so your better of reading that but if you so inclined for some god for-saken reason then yea keep reading..... bro. ((AGAIN EVERYTHING YOU READ HERE IS WRONG...jk....... ((or am i?)) ))+Everything I learn is basically a brain copy pasta of what is on [[https://bevyengine.org/learn/book/getting-started/ | this site]], so your better of reading that but if you so inclined for some god for-saken reason then yea keep reading..... bro. ((AGAIN EVERYTHING YOU READ HERE IS WRONG...jk.......)) ((or am i?))
  
 ==== ECS ==== ==== ECS ====
Line 35: Line 36:
     }     }
 } }
- 
 </code> </code>
 +
 <wrap lo>The above code is a system that loops through any entity with the components Name and Person and prints "Hello name"</wrap> <wrap lo>The above code is a system that loops through any entity with the components Name and Person and prints "Hello name"</wrap>
  
Line 77: Line 78:
     }     }
 } }
-</code> \\+</code> 
 \\ \\
 +
 +==== TUTORIAL - Snake ====
 +[[https://mbuffett.com/posts/bevy-snake-tutorial/ | following this link]]
 +
 +I am following this tutorial to make a snake game to get an idea of how games are made in bevy while also seeing wtf rust is about.
 +
 +== Some interesting snippits ==
 +**code for sizing sprites in our tile system**
 +<code rust>
 +fn size_scaling(windows: Res<Windows>, mut q: Query<(&Size, &mut Transform)>) {
 +    let window = windows.get_primary().unwrap();
 +    for (sprite_size, mut transform) in q.iter_mut() {
 +        transform.scale = Vec3::new(
 +            sprite_size.width / ARENA_WIDTH as f32 * window.width() as f32,
 +            sprite_size.height / ARENA_HEIGHT as f32 * window.height() as f32,
 +            1.0,
 +        );
 +    }
 +}
 +</code>
 +
 +The sizing logic goes like so: if something has a width of 1 in a grid of 40, and the window is 400px across, then it should have a width of 10.
 +\\
 +\\
 +
 +Im gonna leave this at here for now and pick it up later
  
 ==== External links ==== ==== External links ====
Line 87: Line 114:
 [[https://bevy-cheatbook.github.io/ | Cheatbook]] \\  [[https://bevy-cheatbook.github.io/ | Cheatbook]] \\ 
  
-ย +~~DISCUSSION | wagsonwasoff~~
-ย +
  
  
devlogs/30_4_2022.1651348020.txt.gz ยท Last modified: 2023/10/13 16:43 (external edit)