Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

askthedev.com Logo askthedev.com Logo
Sign InSign Up

askthedev.com

Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Questions
  • Learn Something
What's your question?
  • Feed
  • Recent Questions
  • Most Answered
  • Answers
  • No Answers
  • Most Visited
  • Most Voted
  • Random
  1. Asked: April 8, 2025

    Why aren’t the circles colliding with each other or with rectangles in my Box2D simulation?

    anonymous user
    Added an answer on April 8, 2025 at 12:14 am

    Box2D Circle Collision Issue Sounds like you're having a tough time getting your circles to cooperate with Box2D. It can definitely be a bit confusing when you're just starting out! Here are a few things you might want to check: Circle Shape Definition: Make sure you're defining the circle correctlyRead more

    Box2D Circle Collision Issue

    Sounds like you’re having a tough time getting your circles to cooperate with Box2D. It can definitely be a bit confusing when you’re just starting out!

    Here are a few things you might want to check:

    • Circle Shape Definition: Make sure you’re defining the circle correctly. When you create a circle shape, you typically do something like this:
      b2CircleShape circleShape;
      circleShape.m_radius = yourRadius; // Set the radius
                  
    • Body Type: Ensure that the body for your circle is set to dynamic so that it can respond to collisions and gravity:
      b2BodyDef circleBodyDef;
      circleBodyDef.type = b2_dynamicBody;
                  
    • Positioning: Check the position where you’re placing the circle. If it’s way below the ground or overlapping with the ground, it might fall straight through. Coordinates can be tricky!
    • Density and Friction: Just like you did with the rectangle, make sure you’re setting the density and friction for the circle correctly:
      b2FixtureDef circleFixtureDef;
      circleFixtureDef.density = yourDensity; // Set density
      circleFixtureDef.friction = yourFriction; // Set friction
                  
    • Debugging: Sometimes it’s helpful to visualize the shapes and bodies using Raylib’s debugging tools. This can give you insight into whether they’re being created properly.

    If everything else looks good and it’s still not working, you might want to share a snippet of your code for the circle. Other folks here might be able to spot something you’ve missed!

    Keep at it, and you’ll get it sorted out!

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: April 7, 2025

    Why does the content of g_pSurfaceImg[0] get lost after accumulating previous frames in DirectX 10?

    anonymous user
    Added an answer on April 7, 2025 at 8:15 pm

    Sounds like you're having a tough time with that trailing effect! It can be pretty tricky to get blending right in DirectX, especially when you're trying to accumulate frames. Here are a few things you might want to double-check: Blend States: Make sure your blend state is set up correctly. You mayRead more

    Sounds like you’re having a tough time with that trailing effect! It can be pretty tricky to get blending right in DirectX, especially when you’re trying to accumulate frames. Here are a few things you might want to double-check:

    • Blend States: Make sure your blend state is set up correctly. You may need a blend state that allows for alpha blending. Something like this could work:
    • BlendStateDesc.BlendEnable[0] = TRUE;
      BlendStateDesc.SrcBlend = D3D11_BLEND_SRC_ALPHA;
      BlendStateDesc.DestBlend = D3D11_BLEND_INV_SRC_ALPHA;
      BlendStateDesc.BlendOp = D3D11_BLEND_OP_ADD;
    • Render Target Views: Ensure that you’re binding your render targets correctly before drawing. If you don’t bind `g_pSurfaceImg[0]` properly before drawing, you might be writing to the wrong target.
    • Clear Flags: Check if you are clearing the render target every frame or if you are incorrectly using depth/stencil views. If you clear it, it will wipe out previous content!
    • Pixel Shader Logic: Look over your pixel shader. Make sure it correctly blends the current pixel with the previous pixel from `g_pSurfaceImg[0]` based on alpha values.
    • Resource Setup: When you create your shader resource view for `g_pSurfaceImg[0]`, make sure you’re not unintentionally overwriting the contents of the render target when binding it as a shader resource.

    Also, multisampling can mess things up if not set correctly. Ensure you have the correct sample count and quality. Sometimes trying with single sampling can help in debugging this issue.

    If you’ve looked through all these and it’s still acting weird, maybe try outputting the pixel values to a debug buffer after rendering to see what’s actually happening. That could give you some clues on where things are going wrong.

    Good luck! It’s all about trial and error. Keep tweaking those parameters and see if anything shifts the output in the right direction.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: April 7, 2025

    Create a program to simulate the cup stacking game with specific rules and constraints.

    anonymous user
    Added an answer on April 7, 2025 at 8:15 am

    Cool idea! I've never really made something like this, but I'll give it a shot: First off, I think I'd keep it simple at the start. Maybe something like a bunch of lists or arrays to store the cup colors. Like maybe each player has their own set of colors stored like this: playerOneColors = ["red",Read more

    Cool idea! I’ve never really made something like this, but I’ll give it a shot:

    First off, I think I’d keep it simple at the start. Maybe something like a bunch of lists or arrays to store the cup colors. Like maybe each player has their own set of colors stored like this:

        playerOneColors = ["red", "orange", "yellow"];
        playerTwoColors = ["blue", "green", "purple"];
      

    Then for each individual stack, I might make an array too, just to track the current cups being stacked. So whenever you add a cup, I’d just push it onto the array, checking real quick that you haven’t used the same color yet. Something like:

        currentStack = [];
    
        function addCupToStack(color) {
          if (currentStack.includes(color)) {
            alert("Oops! You already used " + color + ". Try another color!");
          } else if (currentStack.length < 3) {
            currentStack.push(color);
          } else {
            alert("Stack is full already!");
          }
        }
      

    For handling players' moves, you could probably just use buttons or simple input prompts to keep things easy. Like, ask the player which color they want to stack, or if they want to knock someone's stack down or trade cups. Maybe you'd organize it into small little functions that handle each kind of move and just call those when needed.

    About random events—I guess I could use JavaScript's random number generator (Math.random() I think?) to choose when these special events happen. Maybe something like:

        function randomEvent() {
          let chance = Math.random();
          if (chance < 0.2) {
            alert("Wind event! Oh no, some cups might topple over!");
          } else if (chance < 0.3) {
            alert("Power Cup! Relax, stacking rules ignored this turn.");
          } else {
            alert("It's all calm. No event this round.");
          }
        }
      

    To handle the flow of the game, I could use a simple while loop or for loop that counts rounds, calls randomEvent each round, and asks players to make moves.

    I know for big games, people usually talk about objects or something fancier, but at this stage, arrays and simple functions make sense to me. Maybe later down the road, I'd learn how to make objects or classes to handle players and stacks better, but for now, simple arrays and functions seem fine. You think that's a good way to start?

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: April 7, 2025

    Solve the Oreo Problem: Determine excess cream between cookie halves with given inputs.

    anonymous user
    Added an answer on April 7, 2025 at 6:14 am

    Oh wow, Oreo math? Okay, let me give it a shot—I think I got what you're saying. So you have four cookies and they have cream amounts like this: Cookie A: 10 grams Cookie B: 20 grams Cookie C: 15 grams Cookie D: 30 grams First off, I guess you gotta find the average cream amount, right? So let's addRead more

    Oh wow, Oreo math? Okay, let me give it a shot—I think I got what you’re saying. So you have four cookies and they have cream amounts like this:

    • Cookie A: 10 grams
    • Cookie B: 20 grams
    • Cookie C: 15 grams
    • Cookie D: 30 grams

    First off, I guess you gotta find the average cream amount, right? So let’s add them up first:

    Total cream = 10 + 20 + 15 + 30 = 75 grams

    Now you divide this by the number of cookies (there’s 4), so it’d be:
    Average cream = 75 / 4 = 18.75 grams

    And now you wanna figure out the amount of excess cream per cookie. I think it means, like, how much over the average each cookie is?

    Alright, I guess you’d just subtract the average from each cookie:

    • Cookie A: 10 – 18.75 = -8.75 grams (oh, so Cookie A is actually under the average…poor Cookie A!)
    • Cookie B: 20 – 18.75 = 1.25 grams extra cream
    • Cookie C: 15 – 18.75 = -3.75 grams (another stingy cookie!)
    • Cookie D: 30 – 18.75 = 11.25 grams extra cream (wow, Cookie D’s the cream champion. nice!)

    I guess negative amounts mean they’re below average, not excess. Uhh… did that make sense?

    Honestly, I’d probably just grab Cookie D and forget all this math stuff—I mean, who could resist the one with 11 grams extra cream, right?

    Hope I didn’t mess this up too badly. Maybe there’s an easier way?

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: April 7, 2025

    How can I adapt the Anya pathfinding algorithm for non-discrete start/target positions while maintaining optimality?

    anonymous user
    Added an answer on April 7, 2025 at 4:14 am

    It sounds like you're doing some cool work with the Anya algorithm! I totally get where you're coming from with the whole start and target position issue. It's tricky when you're dealing with non-discrete positions, especially since Anya was originally designed for discrete cells. Your approach to tRead more

    It sounds like you’re doing some cool work with the Anya algorithm! I totally get where you’re coming from with the whole start and target position issue. It’s tricky when you’re dealing with non-discrete positions, especially since Anya was originally designed for discrete cells.

    Your approach to truncate the decimal parts makes sense for keeping the algorithm in line with the grid system. But I wonder if instead of just truncating, you might try to utilize interpolation or snapping. Maybe you could look into snapping the positions to the nearest walkable vertex rather than just the grid cell. This way, even if your start and target are decimal, you’d still be able to work with them more precisely.

    Another idea could be using the concept of local minima. If you’re finding that certain paths are suboptimal, consider running a simple local optimization after Anya has generated a path. Basically, check specific segments of the path to see if they could be straightened out based on line-of-sight checks. There are also some smoothing techniques where you iteratively adjust the path to minimize distance while checking if the new segment can still be traversed.

    On a different note, you might want to implement a secondary pathfinding run after you get the initial result from Anya. Like, after you get the path, take the start and target points and run a different algorithm (maybe A* or Dijkstra’s) specifically around those non-discrete points, which might give you a smoother path.

    And hey, don’t feel too frustrated! Many people face similar challenges with grid-based algorithms, especially when trying to adapt them for more complex scenarios. Just keep experimenting and iterating on your ideas; that’s the best part of programming!

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 … 38 39 40 41 42 … 5,301

Sidebar

Recent Answers

  1. anonymous user on How do games using Havok manage rollback netcode without corrupting internal state during save/load operations?
  2. anonymous user on How do games using Havok manage rollback netcode without corrupting internal state during save/load operations?
  3. anonymous user on How can I efficiently determine line of sight between points in various 3D grid geometries without surface intersection?
  4. anonymous user on How can I efficiently determine line of sight between points in various 3D grid geometries without surface intersection?
  5. anonymous user on How can I update the server about my hotbar changes in a FabricMC mod?
  • Home
  • Learn Something
  • Ask a Question
  • Answer Unanswered Questions
  • Privacy Policy
  • Terms & Conditions

© askthedev ❤️ All Rights Reserved

Explore

  • Questions
  • Learn Something