The minecraft tag has no wiki summary.
11
votes
1answer
425 views
How to do face removal in a unit-cube world a la Minecraft?
Important note: This question is NOT about geometry culling (frustrum culling, back face culling, occlusion culling or any of their friends.) This question is about geometry elimination at set-up ...
8
votes
1answer
183 views
God won't register a running custom service
I've got a rails website and a small minecraft server running on a linode vps. I'm running minecraft as a custom service off of a ram server based on an init.d file. Since I'm using God to monitor my ...
7
votes
3answers
194 views
Large mutable byte array in Erlang
As I am writing a simple Minecraft server application in Erlang, I am now concerned with the question of how to efficiently store and modify chunk data.
For those who don't know about Minecraft's ...
5
votes
2answers
1k views
How does Minecraft perform lighting?
The only model I'm familiar with is diffuse lighting but this look way more complicated than that.
4
votes
2answers
136 views
Dynamic server discovery list
I'd like to create a web service that an application server can contact to add itself to a list of servers implementing the application. Clients could then contact the service to get a list of ...
4
votes
1answer
712 views
Minecraft javascript error
I am trying to make a script that draws a circle for minecraft using singleplayer commands. For starting, I tried to do the basics; here is my code:
...
4
votes
5answers
388 views
How to create native binaries for your Java app?
I'm wondering how to package a Java application into a native binary for Windows, Linux and Mac OS X.
I know Minecraft does this, but I can't figure out how. This is what'd I'd like to do:
From ...
4
votes
1answer
1k views
How to change/assign process name of java .jar
I'm running Minecraft under Linux, which involves running an executable .jar file. This means it shows up as "java" under ps, rather than "minecraft". I would like to assign it the process name ...
3
votes
2answers
437 views
What is needed to launch external JAR files, like the Minecraft launcher?
If you have never played Minecraft, then this is how the mechanics of the launcher work.
The user can download a JAR (Or a JAR packaged into an EXE), which has absolutely no code for the Minecraft ...
3
votes
1answer
310 views
Description for Minecraft Renderengine
I'd like to find out how the minecraft renderengine works and perhabs adapt it to other technologies. Is there an analysis of the seemingly quite simple render engine of minecraft?
Voxels, just ...
3
votes
1answer
444 views
Java double precision math
I'm doing a bit of modding to a popular game(Minecraft) and I seen these lines in the terrain generation
double d4 = 1.0D;
d4 *= d4;
d4 *= d4;
d4 = 1.0D - d4;
double d5 = (noise1[l1] + 256D) / 512D;
...
3
votes
2answers
787 views
Java heap space Xmx Xms on a vServer with burstable RAM
We run a Minecraft server that relies on Java on a vServer that has 1GB guaranteed RAM and 4GB burstable RAM.
We run Debian 6.0 (Squeeze) Minimal (64Bit) with a lighttpd webserver with php/mySQL ...
3
votes
3answers
1k views
How is a 3d perlin noise function used to generate terrain?
I can wrap my head around using a 2d perlin noise function to generate the height value but I don't understand why a 3d perlin noise function would be used. In Notch's blog, ...
2
votes
2answers
24 views
Preventing Java from creating new processes
I am setting up a little service to allow people to run temporary Minecraft servers on a spare box that's not being put to much use.
The .jar that will start up the Minecraft server will be ...
2
votes
1answer
110 views
Minecraft 2d Remake: Building and Destroying Blocks Issue
I am well into creating my 2d remake of minecraft in java. I know it can be done well, orange451 on youtube inspired me to try and make this. I have all blocks on the map loading from text files, ...
2
votes
4answers
88 views
What are the standard data structures that can be used to efficiently represent the world of minecraft? [closed]
I am thinking of something like a 3x3 matrix for each of the x,y,z coordinates. But that would be a waste of memory since a lot of block spaces are empty. Another solution would be to have a hashmap ...
2
votes
0answers
56 views
'Port Forward' a url
I am using a hosting service to have my minecraft server run.
I was wondering if it was possible to "forward a port" to a url. ie:
change 25561 to 25565 so that the minecraft client reads the url and ...
2
votes
1answer
125 views
How to send packets in a Minecraft Classic server written in Python
I am designing a Minecraft Classic server written in Python, but I don't know how to send the packets properly. I know how to set up a socket, but the part I don't know is how to send them in the ...
2
votes
1answer
56 views
A properties file I created in the 1st run gets blanked in the 2nd run
Okay, I'm trying to create a custom client for Minecraft (don't worry, my question has nothing to do with Minecraft in particular), and I added an abstract class to manage a configuration file using ...
2
votes
1answer
169 views
Is it possible to Edit and Continue in Visual Studio 2010 without pausing execution?
I recently watched a bit of Notch's Ludum Dare live stream. He uses Eclipse's hotswap feature extensively while he works on his game. (here is a video of what I am referring to ...
2
votes
1answer
144 views
OpenGL: 2D Overlay is white over of 3D Scene
I'm trying to make a copy of MineCraft in Java using OpenGL (LWJGL). The problem I'm facing is that everything of my 2D overlay (aiming cross in the middle, menus, etc...) are all white. The 3D part ...
2
votes
3answers
86 views
Why doesn't inotify update?
I'm writing an inotify watcher in C for a Minecraft server. Basically, it watches server.log, gets the latest line, parses it, and if it matches a regex; performs some actions.
The program works fine ...
2
votes
1answer
317 views
Twisted Python + spawnProcess. Getting output from a command
I'm working to wrap the Minecraft server application with a Twisted Python server that has a RESTful API for getting the list of currently connected players. The Twisted app starts the minecraft ...
2
votes
2answers
396 views
Help with using the perlin noise library libnoise
When I call libnoise's getvalue function with x, y, and z as integers I always get 0 back as a result. Is this normal? When I try 1.25, 0.75, 0.5 as in the tutorial ...
2
votes
3answers
396 views
Running Java Application in C# NET
I wrote an application a while ago in C# NET that basically allows the .exe I created to start/stop when the java application (Minecraft) starts and stops.
I would like to extend some more ...
2
votes
4answers
588 views
Python can't communicate with subprocess of a Minecraft server
I'm trying to write a handler/controller for the Minecraft server. My problem is that I can't seem get writing and reading to work properly. When a client issues a command that uses the server class's ...
2
votes
5answers
416 views
Binary to standard digit?
I'm going to make a computer in Minecraft. I understand how to build a computer where it can make binary operations but I want the outputs to be displayed as standard integer numbers. How you ...
1
vote
1answer
73 views
Rendering distance for 2D Arrays--Minecraft 2D
Now that I'm loading my map from a 2D Array of char, the game is really slow when I load more than 100 blocks (10x10 area). I have it rendering the blocks only within a certain distance of the ...
1
vote
1answer
47 views
Server has 2 IP addresses. How can I route 2 servers with 2 different ports to the 2 IPs on the same port
I want to route:
127.0.0.1:25565 <-> 40.39.210.1:25565
127.0.0.1:25564 <-> 40.39.210.40:25565
Note that the 2 internal IPs are the same, but the ports are different, and the 2 external ...
1
vote
2answers
75 views
How do I get the full exception in Python?
I am making a Minecraft Classic server in Python. However, I get the following error in my code:
Unhandled exception in thread started by <bound method Heartbeat.start of <__main__.Heartbeat ...
1
vote
1answer
166 views
“Infinite” world problems
I'm creating a minecraft like voxel engine thing in xna, and have started about implementing "infinite" world but have ran into a few problems. One such problem is that the following line always seems ...
1
vote
1answer
106 views
Buffered pipe in bash
I'm running a Bukkit (Minecraft) server on a Linux machine and I want to have the server gracefully shut down using the server's stop command and the computer suspend at a certain time using ...
1
vote
3answers
157 views
Is it possible to edit a pre-existing .class file from within my program?
This may seem like an odd thing to ask, but it'd take me forever to explain why I need it...
What I need is a way to edit a pre-existing Java .class file within its JAR file, with either a command ...
1
vote
1answer
355 views
Minecraft Coders Pack Errors when Running in Eclipse
Okay I am trying to make minecraft mods using eclipse. I used this video to set it up. I added both ModLoader and GuiApi to the Jar files before decompiling. It works until I try to test it in Eclipse ...
1
vote
2answers
60 views
How to clone an older GIT commit
I'm a developer in training, with some spare time on my hands. I am trying to re-continue a discontinued project (BigBrother, ...
1
vote
2answers
113 views
Java: Iterating a BiMap - Causing Me Some Issues
Java Programming
Issues With Iterating My Map
Iterator<Player> iterator = plugin.inreview.keySet().iterator();
while (iterator.hasNext()) {
Player key = (Player) iterator.next();
...
1
vote
2answers
521 views
I keep getting a “The operator == is undefined for the argument type(s) boolean, int” and have no idea how to fix it
I keep getting a "The operator == is undefined for the argument type(s) boolean, int"
in this bit of code at line 3:
public void loadState(int i)
{
if (statesSaved[i] == 0)
{
...
1
vote
1answer
281 views
Minecraft Script that will remember all the items each person in the server has [closed]
I have a minecraft server, and need to backup all the items people have, I hope to do this by editing the .dat files in world/players. In this file, there are .dat files and their names are the ...
1
vote
2answers
613 views
Minecraft Modding Java compiling error
I am trying to make a mod for minecraft which adds a new block. Here is my code:
mod_Block.java
package net.minecraft.src;
import java.util.random;
public class mod_Block extends BaseMod
{
...
1
vote
1answer
113 views
Seperating HTTP and game server traffic to the same address
We have two dedicated servers. Server 1 is running Linux CentOS and acts as our webserver. Server 2 is running Windows Server 2008 mostly hosting services such as gameservers and does not have apache ...
1
vote
4answers
115 views
What does this block of code do?
I'm not quite sure what this means or whats it doing, Could some one elaborate?
Player player = (Player) sender;
1
vote
2answers
116 views
How to insert and remove blocks quickly in a Minecraftian world?
I currently have volume data for the world stored as an array of booleans. I then check each empty block and if it has non-empty neighbors the faces get drawn. This prevents me from sending a bunch of ...
1
vote
3answers
373 views
Constructing and sending binary data over network
I am creating a command-line client for minecraft. There is a full spec on the protocol that can be found here: http://mc.kev009.com/Protocol. To answer your question beforehand, yes I am a bit of a ...
1
vote
2answers
268 views
Perl Pipe not redirecting Java process output
I'm trying to control a game server and display it's output in real time. This is what I have so far:
#!/usr/bin/perl -w
use IO::Socket;
use Net::hostent; # for OO version of ...
1
vote
1answer
227 views
Log batch in listbox C#?
I am currently working on a program, that can handle Minecraft servers. I am running my batch witch logs the server, and i now want the batch (called batch in my code) to log in my listbox called ...
1
vote
2answers
1k views
Minecraft Server To Client protocol - 18 byte packet on login request
I'm working with the Minecraft Server To Client protocol documentation for a server I am making.
It says the packet is 18+ bytes, but I can't seem to figure out what each byte is for.
1
vote
8answers
378 views
Handling Huge Multidimensional Arrays in C++
I'm designing a game in C++ similar to Minecraft that holds an enormous amount of terrain data in memory. In general, I want to store an array in memory that is [5][4][5][50][50][50]. This isn't bad ...
0
votes
1answer
27 views
Replace Method in another Class
I'm would like to make a Minecraft plugin that replaces methods in other plugins with ones in the plugin, for easy customization of the plugins.
Is there any way to simply replace a method of one ...
0
votes
0answers
22 views
Best Voxel Engine/Language?
I'm researching making a voxel-based game similar to Minecraft, only this would be with slightly higher polygon voxels with higher texture resolutions in order to create smoother, more realistic ...
0
votes
0answers
81 views
Minecraft packet ids (Not classic) [closed]
I am planning to make a program that interacts with minecraft servers (It will be made in python) However I am stuck beceause I cannot get the packet id working with the socket module in python. I am ...