Group Status

  1. Summarize your overall status for the week

    Since we were able to make the game playable right now, we are trying to implement more features for the games based on the game we now have.

    1. Refactoring of the game engine. In the past 6 weeks, all of our experiments and testing happened in the Window.cpp file, it is getting more and more complex. The responsibilities of different modules started to mix together. We separate the graphics engine from the window.cpp. Now, we simply initialize the graphics engine in window.cpp by its constructor, and call the update function of the graphics engine to update and draw. It’s making debugging and development much easier.

    2. Optimization for graphics engine. Since we are adding more objects to render in the gameplay, we want our graphics to load those models faster so that we don’t wait too long on the loading page. We are using multi-threading to minimize the wait time. Everything goes well except the rendering part. We will try to fix it this week.

      Screen Shot 2023-05-15 at 5.04.32 PM.png

    3. Integration of sound effects. Thanks to Jack now we have our original background music in our gameplay. We are integrating the sound playing into the game so it will be played when the game started. We will later integrate sound with character movement and skills.

    4. Particle systems. Since each character has their skill, we decided to add particle effects to them. We finished the particle system without area lighting and texture. It looks simple right but at least it is usable and we will upgrade it later.

      Screen Shot 2023-05-15 at 5.05.38 PM.png

    5. Gameplay design. In the past 6 weeks, we have implemented most of the MVP so we had a discussion this week about what else should we have in our game.

    6. Game scene modeling. Since the wall in our game has no texture, we want to replace it with something looks better. Our artist did a lot of research and is building the entire map as separate models in Blender. We loaded a piece into our engine and we will put the models in our game later.

    7. Character selection. We decide to implement the character selection page feature(one of our Nice-to-have features) this week. And we decided to combine the landing page with the character selection.

  2. Add a statement summarizing the group morale

    Screen Shot 2023-05-15 at 5.08.05 PM.png

    Screen Shot 2023-05-15 at 5.08.32 PM.png

    Screen Shot 2023-05-15 at 5.08.22 PM.png

  3. Add at least one of your latest screenshots to your group page

    Untitled

    Screen Shot 2023-05-15 at 5.10.46 PM.png

Individual Status

Zhiying Guan

  1. What were your concrete goals for the week?

  2. What goals were you able to accomplish?

    I finished the wall model and some of the obstacle models.

    Screen Shot 2023-05-12 at 5.11.54 PM.png

    Screen Shot 2023-05-15 at 4.04.48 PM.png

    Screen Shot 2023-05-15 at 5.01.52 PM.png

  3. If the week went differently than you had planned, what were the reasons?

    N/A

  4. What are your specific goals for the next week?

  5. What did you learn this week, if anything (and did you expect to learn it?)

    More Blender :)

  6. What is your individual morale (which might be different from the overall group morale)?

    😇

Yucheng Huang

  1. What were your concrete goals for the week?

    Finish refactoring graphics code. Test animation for game characters. Try to optimize the graphics engine.

  2. What goals were you able to accomplish?

    I finished all the goals for this week.

  3. If the week went differently than you had planned, what were the reasons?

    The multi-threading optimization did not work very well on the graphics engine for model loading. I was able to load much faster (80% faster) using multi-threading but the object could not be rendered at run-time. So I revert to the previous version, now loading all characters takes about 6 seconds, which is not too bad.

    Also, I ended up spending a lot of time playing the new Zelda, so I didn’t do a lot of extra work this week. I was surprised that the underground world of Zelda is kinda similar to our game :)

  4. What are your specific goals for the next week?

    Work with the artist to finish all character models and textures. Make animation smooths.

  5. What did you learn this week, if anything (and did you expect to learn it?)

    I tried multi-threading in c++, definitely learned a lot, but it seems to work but something is wrong.

  6. What is your individual morale (which might be different from the overall group morale)?

    😃

Jiahui Han