1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-03-20 10:26:59 +00:00
SquidDev 85c556d324 Rewrite the computer thread system
This makes a couple of significant changes to the original system, to
reduce the number of threads created and allow for multiple threads in
the future. There are several notable changes from the original
implementation:

 - A blocking queue is used for the main task queue queue. This removes
   the need for the "monitor" variable and allows for multiple threads
   polling this queue in the future.
 - The thread used to execute tasks is "cached" between tasks,
   significantly reducing the number of threads which need to be
   created. If a task needs to be stopped then the thread is then
   terminated and a new one constructed, though this rarely happens.
2017-09-10 22:08:08 +01:00
2017-05-01 14:32:39 +01:00
2017-05-01 14:51:26 +01:00
2017-05-04 23:39:12 +02:00
2017-09-10 20:45:24 +01:00
2017-07-25 21:10:47 +01:00
2017-05-16 21:57:57 +01:00
2017-05-01 11:43:41 -04:00
2017-05-04 21:14:28 +01:00
2017-06-28 21:39:54 +01:00
2017-05-01 14:32:39 +01:00
2017-05-02 13:18:20 +01:00
2017-05-04 21:14:28 +01:00
2017-05-01 14:51:26 +01:00

ComputerCraft

Build Status

ComputerCraft is a Minecraft modification which adds programmable Robots and Computers to the world of Minecraft. If you're not familiar with ComputerCraft, visit the Website or the Wiki to find out more.

About this Repository

ComputerCraft was originally released in late 2011 by Daniel Ratcliffe. In early 2017, after working on the mod solo for five years, it was decided to release the source code publicly to allow Dan to devote time to other projects. This repository marks the first public release of this source code.

The code in this repository will always represent the "bleeding edge" of the ComputerCraft codebase, but stable builds back to 1.79 will be marked on the Releases page.

Contributing

While ComputerCraft will no longer be actively developed by Daniel Ratcliffe, you may still contribute pull requests which will be reviewed and incorporated into releases periodically. A pull request is more likely to be accepted if it meets the following criteria:

  • It does not add any new dependencies for compiling, running or using the mod.
  • It does not break compatibility with world saves or programs created with previous versions of the mod.
  • It does not add unneccessary complexity for users of the mod, and maintains the accessibility for which the mod is known.
  • It does not add unneccessary complexity or stylistic changes to the code, especially where functionality is not being changed.
  • It does not create bugs!

The pull requests most likely to be accepted are those which fix bugs, simplify code, or make the mod compatible with newer versions of Minecraft.

Description
Modernized/improved/actually updated version of ComputerCraft: https://tweaked.cc
Readme 31 MiB
Languages
Java 73.7%
Lua 25%
Kotlin 0.6%
TypeScript 0.2%
Python 0.2%
Other 0.1%